diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-05-04 09:29:36 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-05-04 09:29:36 +0000 |
commit | 370561355363d554a57fddae057dd7365fe055ac (patch) | |
tree | 183acc5269fe916e6459fd03310c5d53e21c6224 /cppe/src/IceE/LocalException.cpp | |
parent | Bug 1022. (diff) | |
download | ice-370561355363d554a57fddae057dd7365fe055ac.tar.bz2 ice-370561355363d554a57fddae057dd7365fe055ac.tar.xz ice-370561355363d554a57fddae057dd7365fe055ac.zip |
Fixed bug 2177
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() { } |