diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-10-17 20:36:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-17 20:36:49 -0700 |
commit | a832e8a5eff11f58a00ca41ec51ff3895b0da165 (patch) | |
tree | 5bdb84eac327f15b879bec3aa1cdba52a5839fe6 /tests/test_document.cpp | |
parent | f53bddd7d5c79c35145ab506e48b18c457026543 (diff) | |
parent | d0b0cc75ad1bc7c0c3226bc57d63095339579cbe (diff) |
Merge pull request #119 from pavelkryukov/master
Add C++11 'override' specifier
Diffstat (limited to 'tests/test_document.cpp')
-rw-r--r-- | tests/test_document.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp index 73a36f5..c7219e1 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -187,7 +187,7 @@ public: this->setg(begin, begin, end); } - typename std::basic_streambuf<T>::int_type underflow() + typename std::basic_streambuf<T>::int_type underflow() PUGIXML_OVERRIDE { return this->gptr() == this->egptr() ? std::basic_streambuf<T>::traits_type::eof() : std::basic_streambuf<T>::traits_type::to_int_type(*this->gptr()); } |