X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fio%2Freader%2Freader.cpp;fp=example%2Fio%2Freader%2Freader.cpp;h=f42f2fc0df4dfe4da042aa4d04413ec5415bd4e4;hp=9e6c46695cec2b256265736987edada819d3bd8a;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/io/reader/reader.cpp b/example/io/reader/reader.cpp index 9e6c466..f42f2fc 100644 --- a/example/io/reader/reader.cpp +++ b/example/io/reader/reader.cpp @@ -17,10 +17,10 @@ class Test : public anna::app::Application { public: Test (); - void initialize () throw (anna::RuntimeException); + void initialize () noexcept(false); private: - void run () throw (anna::RuntimeException); + void run () noexcept(false); }; using namespace std; @@ -57,12 +57,12 @@ Test::Test () : } void Test::initialize () - throw (RuntimeException) + noexcept(false) { } void Test::run () - throw (RuntimeException) + noexcept(false) { CommandLine& commandLine (CommandLine::instantiate ());