diff options
Diffstat (limited to 'cppe/src/IceE/LocalException.cpp')
-rwxr-xr-x | cppe/src/IceE/LocalException.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cppe/src/IceE/LocalException.cpp b/cppe/src/IceE/LocalException.cpp index ed1b190c353..2eff703326f 100755 --- a/cppe/src/IceE/LocalException.cpp +++ b/cppe/src/IceE/LocalException.cpp @@ -1526,6 +1526,16 @@ Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* __fi { } +Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* __file, int __line, const string& __unsupportedFeature) : +#if defined(_MSC_VER) && (_MSC_VER < 1300) // VC++ 6 compiler bug + LocalException(__file, __line), +#else + ::Ice::LocalException(__file, __line), +#endif + unsupportedFeature(__unsupportedFeature) +{ +} + Ice::FeatureNotSupportedException::~FeatureNotSupportedException() throw() { } |