fix std:: namespace problems
This commit is contained in:
parent
4c10947be5
commit
71f05fc2a4
3 changed files with 14 additions and 2 deletions
|
@ -22,6 +22,11 @@
|
|||
|
||||
#include "keytree.hh"
|
||||
|
||||
#include <string>
|
||||
|
||||
using std::string;
|
||||
|
||||
|
||||
keytree::keytree(Display *display) : _display(display)
|
||||
{
|
||||
_head = new keynode;
|
||||
|
|
|
@ -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("")
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#include <string>
|
||||
#include "actions.hh"
|
||||
#include "keytree.hh"
|
||||
|
||||
#include <string>
|
||||
|
||||
class parser {
|
||||
public:
|
||||
parser(keytree *);
|
||||
|
|
Loading…
Reference in a new issue