diff options
Diffstat (limited to 'frontend/cmd/use.cpp')
-rw-r--r-- | frontend/cmd/use.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/cmd/use.cpp b/frontend/cmd/use.cpp index a7955eb..a6e876a 100644 --- a/frontend/cmd/use.cpp +++ b/frontend/cmd/use.cpp @@ -1,6 +1,8 @@ #include "../Player.h" -FollowupAction Player::cmd_use(Argv argv) { +using namespace std; + +FollowupAction Player::cmd_use(string & argv) { // TODO return FollowupAction::NONE; } |