It's really bad to use using namepspace std in the header...

This commit is contained in:
Love 2024-09-11 17:45:30 +02:00
parent 6e5fa6778f
commit fe83e31524

View File

@ -11,11 +11,10 @@
#include "Boggle.h" #include "Boggle.h"
#include <string> #include <string>
using namespace std;
void intro(); void intro();
void playOneGame(Boggle& boggle); void playOneGame(Boggle& boggle);
bool yesOrNo(string prompt); bool yesOrNo(std::string prompt);
void clearConsole(); void clearConsole();
#endif #endif