fixing emscrippten warning and fixing windows artefact name

This commit is contained in:
Clément Le Bihan
2021-06-16 19:50:21 +02:00
parent bbc84b06b6
commit bd309179e3
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -71,9 +71,11 @@ namespace WAL
explicit System(Wal &wal)
: _wal(wal)
{}
public:
//! @brief A system can't be instantiated, it should be derived.
System(const System &) = default;
System(const System &) = delete;
//! @brief A system can't be instantiated, it should be derived.
System &operator=(const System &) = default;
System &operator=(const System &) = delete;
};
} // namespace WAL