X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fcore%2Ftrace%2Fmain.cpp;fp=example%2Fcore%2Ftrace%2Fmain.cpp;h=83b7970d5a36bd5f9dcdc30e8db1c549c69f60b2;hp=9b66508921fcc3371a3a0a864b672f551a2f5118;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/core/trace/main.cpp b/example/core/trace/main.cpp index 9b66508..83b7970 100644 --- a/example/core/trace/main.cpp +++ b/example/core/trace/main.cpp @@ -18,10 +18,10 @@ class Test : public app::Application { public: Test (); - void initialize () throw (RuntimeException); + void initialize () noexcept(false); private: - void run () throw (RuntimeException); + void run () noexcept(false); }; using namespace std; @@ -60,7 +60,7 @@ Test::Test () : } void Test::initialize () - throw (RuntimeException) + noexcept(false) { CommandLine& commandLine (CommandLine::instantiate ()); @@ -69,7 +69,7 @@ void Test::initialize () } void Test::run () - throw (RuntimeException) + noexcept(false) { CommandLine& commandLine (CommandLine::instantiate ());