Skip to content
Snippets Groups Projects
Commit 48b15121 authored by René Fritze's avatar René Fritze
Browse files

warnings fixed

parent 48ec7d26
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,9 @@ class assert_exception : public std::runtime_error
{
public:
assert_exception(std::string msg)
: std::runtime_error(msg){};
: std::runtime_error(msg)
{
}
};
namespace Stuff {
......@@ -71,7 +73,9 @@ class singlerun_abort_exception : public std::runtime_error
{
public:
singlerun_abort_exception(std::string msg)
: std::runtime_error(msg){};
: std::runtime_error(msg)
{
}
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment