diff options
author | deva <deva> | 2007-09-24 12:55:34 +0000 |
---|---|---|
committer | deva <deva> | 2007-09-24 12:55:34 +0000 |
commit | cc4784e21be549fed648ce8473c0aea18b010453 (patch) | |
tree | 198fec60b74fb8ca0234083114f52455208b61a9 /server/src | |
parent | 43f77843ba460b28224aacebba49bff15eda62f5 (diff) |
More changes to the examples xmls. Also removed some stray debug output from macro xml parser.
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/macro_parser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/macro_parser.cc b/server/src/macro_parser.cc index c317482..aeeb84f 100644 --- a/server/src/macro_parser.cc +++ b/server/src/macro_parser.cc @@ -53,7 +53,7 @@ static void start_hndl(void *p, const char *el, const char **attr) { MacroParser *parser = (MacroParser*)XML_GetUserData(p); - printf("Start tag [%s]\n", el); + // printf("Start tag [%s]\n", el); // Convert to comfy C++ values... std::string name = el; @@ -114,7 +114,7 @@ static void end_hndl(void *p, const char *el) { MacroParser *parser = (MacroParser*)XML_GetUserData(p); - printf("End tag [%s]\n", el); + // printf("End tag [%s]\n", el); if(std::string("include") != el) parser->stack.pop_back(); |