Stop using legacy wxSTD macro in the library code

Just use "std::" directly instead.

No real changes.
This commit is contained in:
Vadim Zeitlin 2023-04-23 17:50:41 +01:00
parent fd0a52250d
commit 9257d36af6
17 changed files with 103 additions and 103 deletions

View file

@ -21,11 +21,11 @@
// somewhat complicates its code but is necessary in order to support building
// it under all platforms and in all build configurations
//
// In your own code you would normally use std::stream classes only and so
// wouldn't need these typedefs
// In your own code you would normally use one set of the stream classes only
// and so wouldn't need these typedefs and preprocessor conditions.
#if wxUSE_STD_IOSTREAM
typedef wxSTD istream DocumentIstream;
typedef wxSTD ostream DocumentOstream;
typedef std::istream DocumentIstream;
typedef std::ostream DocumentOstream;
#else // !wxUSE_STD_IOSTREAM
typedef wxInputStream DocumentIstream;
typedef wxOutputStream DocumentOstream;