From 0c4371e69ab567b457eb410ac56da5530d8fca6f Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 11 Oct 2011 14:01:44 +0200 Subject: Fix parameter type change in startTag method. --- server/src/saxparser.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server') diff --git a/server/src/saxparser.cc b/server/src/saxparser.cc index 597b853..95efffe 100644 --- a/server/src/saxparser.cc +++ b/server/src/saxparser.cc @@ -259,7 +259,7 @@ public: return read(fd, data, size); } - void startTag(std::string name, std::map< std::string, std::string> attributes) + void startTag(std::string name, attributes_t &attributes) { //printf("<%s>\n", name.c_str()); } @@ -275,7 +275,7 @@ private: class MyBufferParser :public SAXParser { public: - void startTag(std::string name, std::map< std::string, std::string> attributes) + void startTag(std::string name, attributes_t &attributes) { //printf("<%s>\n", name.c_str()); } -- cgit v1.2.3