mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 23:07:56 +02:00
OpenSolaris + SunPro C++ compile fix
This commit is contained in:
@@ -155,7 +155,9 @@ public:
|
||||
/// when already another element was present, in this case Iterator
|
||||
/// points to that other element)
|
||||
{
|
||||
return insert(std::make_pair(key, value));
|
||||
// fix: SunPro C++ is silly ...
|
||||
ValueType valueType(key,value);
|
||||
return insert(valueType);
|
||||
}
|
||||
|
||||
inline InsRetVal insert(const ValueType& aPair)
|
||||
|
Reference in New Issue
Block a user