mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-05 10:59:48 +00:00
fixing emscrippten warning and fixing windows artefact name
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user