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-29 22:19:49 +0200 |
commit | 01e216f82e24e7668a892e5a912ccbf1369ae255 (patch) | |
tree | c5e8775db8ba1626a3268c96bac993282bd4ebf5 /src/instrumentparser.h | |
parent | 0930fdc014bf36fb9e2715b3d14bff5fedf354a9 (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 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: |