Big cleanup of rampant using std.
This commit is contained in:
parent
fcd1225370
commit
453c50c563
15 changed files with 49 additions and 40 deletions
|
@ -7,7 +7,7 @@ using namespace fmt;
|
|||
TEST_CASE("game engine can start and take hit", "[game_engine]") {
|
||||
// test fails on purpose right now
|
||||
GameEngine game{4};
|
||||
string err{"error"};
|
||||
std::string err{"error"};
|
||||
game.start_round();
|
||||
game.hit(err);
|
||||
game.end_round();
|
||||
|
@ -17,7 +17,7 @@ TEST_CASE("game engine can start and take hit", "[game_engine]") {
|
|||
TEST_CASE("", "[game_engine]") {
|
||||
// test fails on purpose right now
|
||||
GameEngine game{100};
|
||||
string err{"error"};
|
||||
std::string err{"error"};
|
||||
|
||||
game.start_round();
|
||||
game.hit(err);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue