summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-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());
}