Fix for 64bit linux - size_t isn't always Poco::UInt32

This commit is contained in:
Marian Krivos
2009-03-08 18:57:55 +00:00
parent c4f6084c25
commit aaa3b1b274
6 changed files with 26 additions and 23 deletions

View File

@@ -272,7 +272,7 @@ public:
Statement& operator , (Poco::Int16 value);
/// Adds the value to the list of values to be supplied to the SQL string formatting function.
Statement& operator , (std::size_t value);
Statement& operator , (Poco::UInt32 value);
/// Adds the value to the list of values to be supplied to the SQL string formatting function.
Statement& operator , (Poco::Int32 value);
@@ -563,7 +563,7 @@ inline Statement& Statement::operator , (Poco::Int16 value)
}
inline Statement& Statement::operator , (std::size_t value)
inline Statement& Statement::operator , (Poco::UInt32 value)
{
return commaPODImpl(value);
}