summaryrefslogtreecommitdiff
path: root/tests/writer_string.hpp
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-10-17 20:36:49 -0700
committerGitHub <noreply@github.com>2016-10-17 20:36:49 -0700
commita832e8a5eff11f58a00ca41ec51ff3895b0da165 (patch)
tree5bdb84eac327f15b879bec3aa1cdba52a5839fe6 /tests/writer_string.hpp
parentf53bddd7d5c79c35145ab506e48b18c457026543 (diff)
parentd0b0cc75ad1bc7c0c3226bc57d63095339579cbe (diff)
Merge pull request #119 from pavelkryukov/master
Add C++11 'override' specifier
Diffstat (limited to 'tests/writer_string.hpp')
-rw-r--r--tests/writer_string.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/writer_string.hpp b/tests/writer_string.hpp
index 0c1089d..539377c 100644
--- a/tests/writer_string.hpp
+++ b/tests/writer_string.hpp
@@ -9,7 +9,7 @@ struct xml_writer_string: public pugi::xml_writer
{
std::string contents;
- virtual void write(const void* data, size_t size);
+ virtual void write(const void* data, size_t size) PUGIXML_OVERRIDE;
std::string as_narrow() const;
std::basic_string<wchar_t> as_wide() const;