From 08ed919207d737253e255da5055e0e4e7d7054d0 Mon Sep 17 00:00:00 2001 From: michaeldsmith <37905569+michaeldsmith@users.noreply.github.com> Date: Tue, 30 Aug 2022 07:49:38 -0700 Subject: [PATCH] addresses issue #93 compiler warning re: streampos --- 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();