aboutsummaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/command.h b/src/command.h
index fb1ade3..102c508 100644
--- a/src/command.h
+++ b/src/command.h
@@ -19,8 +19,6 @@
#include "symtab.h"
-using namespace std;
-
struct DepNode;
class Evaluator;
@@ -28,7 +26,7 @@ struct Command {
explicit Command(Symbol o)
: output(o), echo(true), ignore_error(false), force_no_subshell(false) {}
Symbol output;
- string cmd;
+ std::string cmd;
bool echo;
bool ignore_error;
bool force_no_subshell;