From 5a948bca46b3f8b1bc65f70311560e9ffee1803e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Wed, 16 Jun 2021 19:58:54 +0200 Subject: [PATCH] fixing test compil undoing emmscripten stuff --- lib/wal/sources/System/System.hpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/wal/sources/System/System.hpp b/lib/wal/sources/System/System.hpp index 2a6a9b1b..88a1c73b 100644 --- a/lib/wal/sources/System/System.hpp +++ b/lib/wal/sources/System/System.hpp @@ -71,11 +71,9 @@ namespace WAL explicit System(Wal &wal) : _wal(wal) {} - - public: //! @brief A system can't be instantiated, it should be derived. - System(const System &) = delete; + System(const System &) = default; //! @brief A system can't be instantiated, it should be derived. - System &operator=(const System &) = delete; + System &operator=(const System &) = default; }; } // namespace WAL \ No newline at end of file