GNU g++  v5.2.1
GNU Standard C++
cpp_type_traits.h File Reference

This is an internal header file, included by other library headers. More...

#include <bits/c++config.h>
Include dependency graph for cpp_type_traits.h:
This graph shows which files directly or indirectly include this file:

Macros

#define __INT_N(TYPE)
 

Functions

namespace __gnu_cxx _GLIBCXX_VISIBILITY (default)
 

Detailed Description

This is an internal header file, included by other library headers.

Do not attempt to use it directly. {ext/type_traits}

Macro Definition Documentation

#define __INT_N (   TYPE)
Value:
template<> \
struct __is_integer<TYPE> \
{ \
enum { __value = 1 }; \
typedef __true_type __type; \
}; \
template<> \
struct __is_integer<unsigned TYPE> \
{ \
enum { __value = 1 }; \
typedef __true_type __type; \
};

Function Documentation

namespace __gnu_cxx _GLIBCXX_VISIBILITY ( default  )