freebsd-ports/science/netcdf/files/patch-ncvalues.cpp

20 lines
502 B
C++
Raw Normal View History

2002-09-16 10:47:01 +02:00
--- cxx/ncvalues.cpp.orig Mon Sep 16 16:28:57 2002
+++ cxx/ncvalues.cpp Mon Sep 16 16:29:42 2002
2002-09-16 10:35:18 +02:00
@@ -310,7 +310,7 @@
os << the_values[i] << ", ";
if (the_number > 0)
os << the_values[the_number-1] ;
- os.flags(save);
+ os.flags(std::_Ios_Fmtflags(save));
return os;
}
@@ -322,6 +322,6 @@
os << the_values[i] << ", ";
if (the_number > 0)
os << the_values[the_number-1];
- os.flags(save);
+ os.flags(std::_Ios_Fmtflags(save));
return os;
}