diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-08-07 01:34:34 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-08-07 01:34:34 +0000 |
| commit | 71f05fc2a4bc536f5c096e7ca756cd539ead911d (patch) | |
| tree | 17e53e0e2098b4d16843201daabddb0be1cb0e62 /util/epist/parser.cc | |
| parent | 4c10947be5885d977a252d6300f4cb2b5646d8ec (diff) | |
fix std:: namespace problems
Diffstat (limited to 'util/epist/parser.cc')
| -rw-r--r-- | util/epist/parser.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/util/epist/parser.cc b/util/epist/parser.cc index 660a876f..bbf5dad1 100644 --- a/util/epist/parser.cc +++ b/util/epist/parser.cc @@ -1,10 +1,16 @@ extern "C" { #include <stdio.h> } + #include "parser.hh" +#include <string> + +using std::string; + + parser::parser(keytree *kt) - : _mask(0), _action(Action::noaction), _key(""), _arg(""), _kt(kt) + : _kt(kt), _mask(0), _action(Action::noaction), _key(""), _arg("") { } |
