aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2001-06-09 17:39:29 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2001-06-09 17:39:29 +0000
commitcd7894a5107cf60fddb047ae29b571d32c9182bc (patch)
tree5e2f556e7f2d2455edf13bfce2850af65738bec4
parentd5ee548054f85e84ddee85bffe21acd25e47ce16 (diff)
downloadgcc-cd7894a5107cf60fddb047ae29b571d32c9182bc.zip
gcc-cd7894a5107cf60fddb047ae29b571d32c9182bc.tar.gz
gcc-cd7894a5107cf60fddb047ae29b571d32c9182bc.tar.bz2
std_cctype.h: Remove isblank.
2001-06-09 Benjamin Kosnik <bkoz@redhat.com> * include/c_std/bits/std_cctype.h: Remove isblank. From-SVN: r43078
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/c_std/bits/std_cctype.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 97ab331..9ebecfa 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2001-06-09 Benjamin Kosnik <bkoz@redhat.com>
+ * include/c_std/bits/std_cctype.h: Remove isblank.
+
+2001-06-09 Benjamin Kosnik <bkoz@redhat.com>
+
* acinclude.m4 (GLIBCPP_CHECK_WCHAR_T_SUPPORT): Check for fgetwc,
fgetws.
* aclocal.m4: Regenerate.
diff --git a/libstdc++-v3/include/c_std/bits/std_cctype.h b/libstdc++-v3/include/c_std/bits/std_cctype.h
index ed78171..aa120b0 100644
--- a/libstdc++-v3/include/c_std/bits/std_cctype.h
+++ b/libstdc++-v3/include/c_std/bits/std_cctype.h
@@ -40,7 +40,6 @@
// Get rid of those macros defined in <ctype.h> in lieu of real functions.
#undef isalnum
#undef isalpha
-#undef isblank
#undef iscntrl
#undef isdigit
#undef isgraph
@@ -57,7 +56,6 @@ namespace std
{
using ::isalnum;
using ::isalpha;
- using ::isblank;
using ::iscntrl;
using ::isdigit;
using ::isgraph;