src/CMakeLists: Enforce multiple warnings on MSVC (#5692)

This commit is contained in:
Tobias
2022-11-09 23:14:28 +01:00
committed by GitHub
parent 38b8bf12de
commit bb05d8c12a
10 changed files with 53 additions and 30 deletions

View File

@@ -29,8 +29,8 @@ public:
void Connect();
std::vector<std::shared_ptr<CheatBase>> GetCheats() const;
void AddCheat(const std::shared_ptr<CheatBase>& cheat);
void RemoveCheat(int index);
void UpdateCheat(int index, const std::shared_ptr<CheatBase>& new_cheat);
void RemoveCheat(std::size_t index);
void UpdateCheat(std::size_t index, const std::shared_ptr<CheatBase>& new_cheat);
void SaveCheatFile() const;
private: