aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/osg/fix-error-c3861.patch
blob: 7830717040a3f63eb69e3f310e63ac96aa49bdf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/osgPlugins/osga/OSGA_Archive.cpp b/src/osgPlugins/osga/OSGA_Archive.cpp
index b9f518a..19186a7 100644
--- a/src/osgPlugins/osga/OSGA_Archive.cpp
+++ b/src/osgPlugins/osga/OSGA_Archive.cpp
@@ -77,7 +77,7 @@ inline OSGA_Archive::pos_type ARCHIVE_POS( const std::streampos & pos )
 #else // older Dinkumware (eg: one included in Win Server 2003 Platform SDK )
 	fpos_t position = pos.get_fpos_t();
 #endif
-    std::streamoff offset = pos.operator std::streamoff( ) - _FPOSOFF( position );
+    std::streamoff offset = 0;
 
     return OSGA_Archive::pos_type( position + offset );
 }