From 6dfa3fb34fb0a2ea028fd46e77296e26b092fb99 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 30 Oct 2024 14:48:02 +0100 Subject: use string instead of argument vector for commands --- frontend/cmd/put.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'frontend/cmd/put.cpp') diff --git a/frontend/cmd/put.cpp b/frontend/cmd/put.cpp index 8a6c828..6e7002b 100644 --- a/frontend/cmd/put.cpp +++ b/frontend/cmd/put.cpp @@ -1,6 +1,8 @@ #include "../Player.h" -FollowupAction Player::cmd_put(Argv argv) { +using namespace std; + +FollowupAction Player::cmd_put(string & argv) { // TODO return FollowupAction::NONE; } -- cgit v1.2.3