From cc4784e21be549fed648ce8473c0aea18b010453 Mon Sep 17 00:00:00 2001 From: deva Date: Mon, 24 Sep 2007 12:55:34 +0000 Subject: More changes to the examples xmls. Also removed some stray debug output from macro xml parser. --- server/src/macro_parser.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/src') 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(); -- cgit v1.2.3