X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fcore%2FgenLogon%2Fmain.cpp;fp=example%2Fcore%2FgenLogon%2Fmain.cpp;h=9649fb6fa08db675072eb4b633d48a181bffabff;hp=8beb114e10fd9e3b1891a5c72b2111dedb5a7532;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/core/genLogon/main.cpp b/example/core/genLogon/main.cpp index 8beb114..9649fb6 100644 --- a/example/core/genLogon/main.cpp +++ b/example/core/genLogon/main.cpp @@ -23,10 +23,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,13 +60,13 @@ Test::Test () : } void Test::initialize () - throw (RuntimeException) + noexcept(false) { Encoder::initialize (); } void Test::run () - throw (RuntimeException) + noexcept(false) { CommandLine& commandLine (CommandLine::instantiate ());