]> sigrok.org Git - libsigrok.git/commitdiff
C++: Use noexcept instead of throw()
authorDaniel Elstner <redacted>
Sun, 11 Oct 2015 10:19:27 +0000 (12:19 +0200)
committerDaniel Elstner <redacted>
Mon, 26 Oct 2015 05:45:56 +0000 (06:45 +0100)
Runtime-checked exception specifications via throw() are
deprecated in C++11.

bindings/cxx/classes.cpp
bindings/cxx/include/libsigrokcxx/libsigrokcxx.hpp

index 25cb60b02b8f17ae665268acc4e9e8ec1ea1b008..1b53d0a795968aa79c5a64ed0f9be90b38af3f5b 100644 (file)
@@ -60,12 +60,12 @@ Error::Error(int result) : result(result)
 {
 }
 
-const char *Error::what() const throw()
+const char *Error::what() const noexcept
 {
        return sr_strerror(result);
 }
 
-Error::~Error() throw()
+Error::~Error() noexcept
 {
 }
 
index e93a5fb5942f5b4b8689824840ef21d8cd5bbd6d..c36ee2928bc3f5890dd7071def7d2dbc35438eb4 100644 (file)
@@ -121,9 +121,9 @@ class SR_API Error: public exception
 {
 public:
        explicit Error(int result);
-       ~Error() throw();
+       ~Error() noexcept;
        const int result;
-       const char *what() const throw();
+       const char *what() const noexcept;
 };
 
 /* Base template for classes whose resources are owned by a parent object. */