diff options
author | Benoit Foucher <benoit@zeroc.com> | 2011-10-18 22:18:35 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2011-10-18 22:50:09 +0200 |
commit | 54a5e8d05528c379b1c3465b908c18fe5aa5d2b3 (patch) | |
tree | da218465a52a7eaf19c44d281fc3952e40f9f59b /cpp/src/Ice/Exception.cpp | |
parent | Fixed ICE-4722 - Bogus communicator initialization in Freeze map (diff) | |
download | ice-54a5e8d05528c379b1c3465b908c18fe5aa5d2b3.tar.bz2 ice-54a5e8d05528c379b1c3465b908c18fe5aa5d2b3.tar.xz ice-54a5e8d05528c379b1c3465b908c18fe5aa5d2b3.zip |
Fixed ICE-4721 - support for OS X clang
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index d0572ff0323..a6b77505c5d 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -40,6 +40,12 @@ throwMemoryLimitException(const char* file, int line, size_t requested, size_t m throw Ice::MemoryLimitException(file, line, s.str()); } +void +throwMarshalException(const char* file, int line, const string& reason) +{ + throw Ice::MarshalException(file, line, reason); +} + } } |