From c13fffa057cecc60a26670b30f32b8dfd5a47e3e Mon Sep 17 00:00:00 2001 From: michaeldsmith <37905569+michaeldsmith@users.noreply.github.com> Date: Tue, 30 Aug 2022 22:14:45 -0700 Subject: [PATCH] addresses issue #93 compiler warning re: streampos (#94) --- lib/dpx/dpx.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpx/dpx.hh b/lib/dpx/dpx.hh index 02ae8331..5639aaa9 100644 --- a/lib/dpx/dpx.hh +++ b/lib/dpx/dpx.hh @@ -297,7 +297,7 @@ struct dpx { compliance_e current_compliance; endian_mode_e current_endian_mode; - std::istream::streampos header_start; + std::streampos header_start; public: virtual ~dpx();