summaryrefslogtreecommitdiff
path: root/src/instrumentparser.h
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2016-03-23 15:59:41 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2016-03-29 22:43:31 +0200
commit390f6f094d43f0d8cfca4efff13d002eb4cf6f19 (patch)
tree1e8644e553d349eb26bba373354f751717b8a598 /src/instrumentparser.h
parenteaf8c01ac99f9561870528ff608a073166be2163 (diff)
Make attr a const ref.
Diffstat (limited to 'src/instrumentparser.h')
-rw-r--r--src/instrumentparser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/instrumentparser.h b/src/instrumentparser.h
index 3fee916..a203444 100644
--- a/src/instrumentparser.h
+++ b/src/instrumentparser.h
@@ -43,7 +43,7 @@ public:
protected:
int readData(std::string& data, std::size_t size) override;
- virtual void startTag(const std::string& name, attr_t& attr) override;
+ virtual void startTag(const std::string& name, const attr_t& attr) override;
virtual void endTag(const std::string& name) override;
private: