summaryrefslogtreecommitdiff
path: root/server/src/saxparser.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2011-10-11 14:01:44 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2011-10-11 14:01:44 +0200
commit0c4371e69ab567b457eb410ac56da5530d8fca6f (patch)
tree4f05f16c751c30747c302d93b7764b45e1a1be36 /server/src/saxparser.cc
parent3df7d9ff38e97106ba136aa9e6606457a09b89f9 (diff)
Fix parameter type change in startTag method.
Diffstat (limited to 'server/src/saxparser.cc')
-rw-r--r--server/src/saxparser.cc4
1 files changed, 2 insertions, 2 deletions
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());
}