summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-06-03 07:50:05 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-06-03 07:50:05 +0200
commit618501b6fae62fa2d5db922ec8abf94120e5e99c (patch)
tree26cd18ceef12003d4d7b84b40bf9b77f7465093c /src/main.cpp
parent4f75af9646b03ce4101820c10152944c780e7c0a (diff)
Added gamestate object
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 1621ba8..c780e1f 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -11,7 +11,7 @@ int main(int argc, char* argv[])
}
std::string outputFolder = argv[1];
- Spacebot bot(outputFolder);
+ Spacebot bot(std::move(outputFolder));
bot.writeNextMove();
return 0;