summaryrefslogtreecommitdiffstats
path: root/contrib/libstdc++/config/os/aix/ctype_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/libstdc++/config/os/aix/ctype_base.h')
-rw-r--r--contrib/libstdc++/config/os/aix/ctype_base.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libstdc++/config/os/aix/ctype_base.h b/contrib/libstdc++/config/os/aix/ctype_base.h
index ed41440..adcd1ce 100644
--- a/contrib/libstdc++/config/os/aix/ctype_base.h
+++ b/contrib/libstdc++/config/os/aix/ctype_base.h
@@ -1,6 +1,6 @@
// Locale support -*- C++ -*-
-// Copyright (C) 2000, 1999 Free Software Foundation, Inc.
+// Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@@ -48,8 +48,8 @@
static const mask xdigit = _ISXDIGIT;
static const mask space = _ISSPACE;
static const mask print = _ISPRINT;
- static const mask graph = _ISGRAPH;
+ static const mask graph = _ISALPHA | _ISDIGIT | _ISPUNCT;
static const mask cntrl = _ISCNTRL;
static const mask punct = _ISPUNCT;
- static const mask alnum = _ISALNUM;
+ static const mask alnum = _ISALPHA | _ISDIGIT;
};
OpenPOWER on IntegriCloud