#include <bits/c++config.h>Go to the source code of this file.
Definition in file limits.
| #define __glibcxx_digits | ( | T | ) | (sizeof(T) * __CHAR_BIT__ - __glibcxx_signed (T)) | 
| #define __glibcxx_digits10 | ( | T | ) | (__glibcxx_digits (T) * 643 / 2136) | 
| #define __glibcxx_max | ( | T | ) | (__glibcxx_signed (T) ? ((T)1 << __glibcxx_digits (T)) - 1 : ~(T)0) | 
Definition at line 138 of file limits.
Referenced by std::numeric_limits< wchar_t >::max(), and std::numeric_limits< char >::max().
| #define __glibcxx_min | ( | T | ) | (__glibcxx_signed (T) ? (T)1 << __glibcxx_digits (T) : (T)0) | 
Definition at line 135 of file limits.
Referenced by std::numeric_limits< wchar_t >::min(), and std::numeric_limits< char >::min().
 1.4.7