mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
Revert include ordering.
2003-01-23 Benjamin Kosnik <bkoz@redhat.com> Revert include ordering. * config/locale/generic/c_locale.h: Add include guards. * config/locale/gnu/c_locale.h: Same. * include/bits/locale_classes.h: Remove cctype include. * include/std/std_iosfwd.h: Add c++locale.h, cctype includes. * include/std/std_fstream.h: Remove streambuf include. * include/std/std_sstream.h: Remove streambuf include. From-SVN: r61664
This commit is contained in:
parent
8891b78727
commit
1a1e79bbfe
@ -1,3 +1,13 @@
|
||||
2003-01-23 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
Revert include ordering.
|
||||
* config/locale/generic/c_locale.h: Add include guards.
|
||||
* config/locale/gnu/c_locale.h: Same.
|
||||
* include/bits/locale_classes.h: Remove cctype include.
|
||||
* include/std/std_iosfwd.h: Add c++locale.h, cctype includes.
|
||||
* include/std/std_fstream.h: Remove streambuf include.
|
||||
* include/std/std_sstream.h: Remove streambuf include.
|
||||
|
||||
2003-01-23 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* configure.in (libtool_VERSION): To 6:0:0.
|
||||
|
@ -33,6 +33,11 @@
|
||||
|
||||
// Written by Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
#ifndef _CPP_BITS_C_LOCALE_H
|
||||
#define _CPP_BITS_C_LOCALE_H 1
|
||||
|
||||
#pragma GCC system_header
|
||||
|
||||
#include <clocale>
|
||||
|
||||
#define _GLIBCPP_NUM_CATEGORIES 0
|
||||
@ -73,3 +78,5 @@ namespace std
|
||||
return __ret;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -33,6 +33,11 @@
|
||||
|
||||
// Written by Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
#ifndef _CPP_BITS_C_LOCALE_H
|
||||
#define _CPP_BITS_C_LOCALE_H 1
|
||||
|
||||
#pragma GCC system_header
|
||||
|
||||
#include <clocale>
|
||||
#include <langinfo.h> // For codecvt
|
||||
#include <iconv.h> // For codecvt using iconv, iconv_t
|
||||
@ -96,3 +101,5 @@ namespace std
|
||||
return __ret;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -43,7 +43,6 @@
|
||||
#pragma GCC system_header
|
||||
|
||||
#include <bits/localefwd.h>
|
||||
#include <cctype> // For isspace, etc.
|
||||
#include <cstring> // For strcmp.
|
||||
#include <string>
|
||||
#include <bits/atomicity.h>
|
||||
|
@ -42,7 +42,6 @@
|
||||
|
||||
#pragma GCC system_header
|
||||
|
||||
#include <streambuf>
|
||||
#include <istream>
|
||||
#include <ostream>
|
||||
#include <locale> // For codecvt
|
||||
|
@ -43,6 +43,8 @@
|
||||
#pragma GCC system_header
|
||||
|
||||
#include <bits/c++config.h>
|
||||
#include <bits/c++locale.h>
|
||||
#include <cctype> // For isspace, etc.
|
||||
#include <bits/stringfwd.h> // For string forward declarations.
|
||||
#include <bits/fpos.h>
|
||||
#include <bits/functexcept.h>
|
||||
|
@ -41,7 +41,6 @@
|
||||
|
||||
#pragma GCC system_header
|
||||
|
||||
#include <streambuf>
|
||||
#include <istream>
|
||||
#include <ostream>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user