diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-18 08:20:33 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-18 08:20:33 +0100 |
commit | 93edc6ad4da5f94d75c910252df5e3cbfc317319 (patch) | |
tree | f6275a7f3bcb54b6f9bb3d14491adb3236a77a15 | |
parent | f900ffb5c737064f9c0b2d5eecf6b325fa0ba21d (diff) |
logic/runtime-libraries: use default ctor
-rw-r--r-- | logic/runtime-libraries.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/runtime-libraries.hpp b/logic/runtime-libraries.hpp index acf5bf30..08226c5d 100644 --- a/logic/runtime-libraries.hpp +++ b/logic/runtime-libraries.hpp @@ -26,7 +26,7 @@ public: std::shared_ptr<IProtocol> pProtocol; runtime_libraries(QFrame* frame, dylibptr t, dylibptr p, dylibptr f); - runtime_libraries() : pTracker(nullptr), pFilter(nullptr), pProtocol(nullptr), correct(false) {} + runtime_libraries() = default; bool correct = false; }; |