diff options
author | André Nusser <andre.nusser@googlemail.com> | 2016-03-23 15:59:41 +0100 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-03-23 15:59:41 +0100 |
commit | e8fcde7654f2d7dce494ebe1ca27abbebc3908b4 (patch) | |
tree | 42ee68e66205d6d4751f6bcd071df440ed62a245 /src/instrumentparser.h | |
parent | 04e088e65942b7f6fdd80c4e54768dca987ff9d7 (diff) |
Make attr a const ref.
Diffstat (limited to 'src/instrumentparser.h')
-rw-r--r-- | src/instrumentparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/instrumentparser.h b/src/instrumentparser.h index 15fadef..50e05ef 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: |