diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-11-29 03:52:46 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-11-29 03:52:46 +0100 |
| commit | 4fcb511e0f4f81453b1c97df99c56ebe1b38aade (patch) | |
| tree | 342aa9261a573796f021eefa0d579858fcf597bc /labb5/src/boggleplay.cpp | |
| parent | 20b90c175988bf01b4c0933d956879f5848c6195 (diff) | |
| download | tddd86-4fcb511e0f4f81453b1c97df99c56ebe1b38aade.tar.gz | |
function comments, reorder includes
Diffstat (limited to 'labb5/src/boggleplay.cpp')
| -rwxr-xr-x | labb5/src/boggleplay.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/labb5/src/boggleplay.cpp b/labb5/src/boggleplay.cpp index 23daf99..f9bf79d 100755 --- a/labb5/src/boggleplay.cpp +++ b/labb5/src/boggleplay.cpp @@ -3,15 +3,14 @@ // TODO remove this comment header and replace with your own #include <cstdlib> -#include <iostream> #include <iomanip> +#include <iostream> #include <sstream> +#include <string> #include "Boggle.h" #include "bogglemain.h" #include "strlib.h" -#include <string> - void setup_board(Boggle& boggle) { bool input_custom_board = yesOrNo("Input custom board? "); if (input_custom_board) { |
