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
+1 -1
View File
@@ -38,5 +38,5 @@ jobs:
- name: Archive production artifact for Windows binary
uses: actions/upload-artifact@v1
with:
name: BombermanWindow
name: BombermanWindows.exe
path: build/Debug/bomberman.exe
+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