From 6b2d5abec663d192fa4eb89527307920f752bf98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Tue, 8 Oct 2019 23:11:47 +0200 Subject: [PATCH] fix for cosmic and C++17 --- src/xml-cxx/xml.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml-cxx/xml.hxx b/src/xml-cxx/xml.hxx index 9020702..5ad9082 100644 --- a/src/xml-cxx/xml.hxx +++ b/src/xml-cxx/xml.hxx @@ -478,7 +478,7 @@ namespace xml { ~stream_error() noexcept; const char* what() const noexcept; private: - std::istream::streampos _pos; + std::streampos _pos; Tag* _tag; char _char; };