mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
Fix for 64bit linux - size_t isn't always Poco::UInt32
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user