src/xx: cppcheck

This commit is contained in:
Gwenhael Goavec-Merou
2023-04-15 08:20:05 +02:00
parent 3ca60dd14d
commit 0a9e8a7e4b
24 changed files with 45 additions and 36 deletions
+4 -4
View File
@@ -9,9 +9,9 @@
#include <iostream>
#include <string>
void printError(std::string err, bool eol = true);
void printWarn(std::string warn, bool eol = true);
void printInfo(std::string info, bool eol = true);
void printSuccess(std::string success, bool eol = true);
void printError(const std::string &err, bool eol = true);
void printWarn(const std::string &warn, bool eol = true);
void printInfo(const std::string &info, bool eol = true);
void printSuccess(const std::string &success, bool eol = true);
#endif // DISPLAY_HPP_