summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/FileTracker.h
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-06-09 14:50:25 -0400
committerJoe George <joe@zeroc.com>2016-06-10 16:18:16 -0400
commit099dc25550da1e1612a6508c3e18954dbc01e6cd (patch)
tree348c81e88e50a4a84eee94672022c89ac935c5a2 /cpp/src/Slice/FileTracker.h
parentRestored serveramd on Linux/OSX (diff)
downloadice-099dc25550da1e1612a6508c3e18954dbc01e6cd.tar.bz2
ice-099dc25550da1e1612a6508c3e18954dbc01e6cd.tar.xz
ice-099dc25550da1e1612a6508c3e18954dbc01e6cd.zip
ICE-7176 - Cleanup exception dtor noexcept
Diffstat (limited to 'cpp/src/Slice/FileTracker.h')
-rw-r--r--cpp/src/Slice/FileTracker.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Slice/FileTracker.h b/cpp/src/Slice/FileTracker.h
index 1c18c97742f..1826e52a495 100644
--- a/cpp/src/Slice/FileTracker.h
+++ b/cpp/src/Slice/FileTracker.h
@@ -21,7 +21,9 @@ class FileException : public ::IceUtil::Exception
public:
FileException(const char*, int, const std::string&);
- ~FileException() ICE_NOEXCEPT;
+#ifndef ICE_CPP11_COMPILER
+ ~FileException() throw();
+#endif
virtual std::string ice_id() const;
virtual void ice_print(std::ostream&) const;
#ifndef ICE_CPP11_MAPPING