Browse Source

dtoolutil: use std:: qualification when exposing std types

rdb 7 years ago
parent
commit
3a698e5a81
1 changed files with 9 additions and 9 deletions
  1. 9 9
      dtool/src/dtoolutil/config_dtoolutil.N

+ 9 - 9
dtool/src/dtoolutil/config_dtoolutil.N

@@ -1,10 +1,10 @@
-forcetype ofstream
-forcetype ifstream
-forcetype fstream
+forcetype std::ofstream
+forcetype std::ifstream
+forcetype std::fstream
 
-forcetype ios_base
-forcetype basic_ios<char>
-forcetype ios
-forcetype istream
-forcetype ostream
-forcetype iostream
+forcetype std::ios_base
+forcetype std::basic_ios<char>
+forcetype std::ios
+forcetype std::istream
+forcetype std::ostream
+forcetype std::iostream