Skip to content
Snippets Groups Projects
Commit ffaf8311 authored by Brad King's avatar Brad King
Browse files

ERR: Need to move forward declarations of non-ansi streams into std namespace when it is available.

parent 0bb180aa
No related branches found
No related tags found
No related merge requests found
......@@ -27,17 +27,21 @@
#if !defined(KWSYS_NO_ANSI_STREAM_HEADERS)
# include <iosfwd>
#else
class fstream;
class ifstream;
class ios;
class istream;
class ofstream;
class ostream;
# if !defined(KWSYS_NO_STD_NAMESPACE)
namespace std
{
# endif
class fstream;
class ifstream;
class ios;
class istream;
class ofstream;
class ostream;
# if !defined(KWSYS_NO_STD_NAMESPACE)
using ::fstream;
using ::ifstream;
using ::ios;
using ::istream;
using ::ofstream;
using ::ostream;
}
# endif
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment