From 3a698e5a81266749ce4ebd7cfad6d47d6efafffa Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 6 Jun 2018 11:48:52 +0200 Subject: [PATCH] dtoolutil: use std:: qualification when exposing std types --- dtool/src/dtoolutil/config_dtoolutil.N | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dtool/src/dtoolutil/config_dtoolutil.N b/dtool/src/dtoolutil/config_dtoolutil.N index 07e763282f..2ccd2b4210 100644 --- a/dtool/src/dtoolutil/config_dtoolutil.N +++ b/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 -forcetype ios -forcetype istream -forcetype ostream -forcetype iostream +forcetype std::ios_base +forcetype std::basic_ios +forcetype std::ios +forcetype std::istream +forcetype std::ostream +forcetype std::iostream