all repos — openbox @ 71f05fc2a4bc536f5c096e7ca756cd539ead911d

openbox fork - make it a bit more like ryudo

fix std:: namespace problems
Dana Jansens danakj@orodu.net
commit

71f05fc2a4bc536f5c096e7ca756cd539ead911d

parent

4c10947be5885d977a252d6300f4cb2b5646d8ec

3 files changed, 14 insertions(+), 2 deletions(-)

jump to
M util/epist/keytree.ccutil/epist/keytree.cc

@@ -22,6 +22,11 @@ // DEALINGS IN THE SOFTWARE.

#include "keytree.hh" +#include <string> + +using std::string; + + keytree::keytree(Display *display) : _display(display) { _head = new keynode;
M util/epist/parser.ccutil/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("") { }
M util/epist/parser.hhutil/epist/parser.hh

@@ -1,6 +1,7 @@

-#include <string> #include "actions.hh" #include "keytree.hh" + +#include <string> class parser { public: