Static Public Member Functions | List of all members
internal::int_checker< IsSigned > Struct Template Reference

#include <printf.h>

Static Public Member Functions

template<typename T >
static bool fits_in_int (T value)
 
static bool fits_in_int (bool)
 

Detailed Description

template<bool IsSigned>
struct internal::int_checker< IsSigned >

Definition at line 146 of file printf.h.

Member Function Documentation

template<bool IsSigned>
template<typename T >
static bool internal::int_checker< IsSigned >::fits_in_int ( value)
inlinestatic

Definition at line 148 of file printf.h.

148  {
149  unsigned max = std::numeric_limits<int>::max();
150  return value <= max;
151  }
static int max(int a, int b)
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1225
template<bool IsSigned>
static bool internal::int_checker< IsSigned >::fits_in_int ( bool  )
inlinestatic

Definition at line 152 of file printf.h.

152 { return true; }

The documentation for this struct was generated from the following file: