12#if defined( ARDUINO ) || defined( ARDUINO_ARCH_AVR) || defined( ARDUINO_ARCH_SAMD ) || defined( ENERGIA_ARCH_MSP430ELF )
13 #define ARDUINO_PLATFORM
17#if ( __cplusplus < 201103L || defined ( __AVR_ARCH__ ) || defined( ARDUINO_PLATFORM ) || defined ( STM8Sxx ) )
47 constexpr real_t operator "" _re(
unsigned long long int x )
49 return static_cast<real_t>( x );
51 constexpr real_t operator "" _re(
long double x )
53 return static_cast<real_t>( x );
58 constexpr real_t REAL_MAX = FLT_MAX;
59 constexpr real_t REAL_MIN = FLT_MIN;
67 nonCopyable(
const nonCopyable & );
68 nonCopyable& operator=(
const nonCopyable & );
74#define Q_UNUSED(arg) (void)(arg)
constexpr const char * std
Definition qlibs.h:68
The qLibs++ library namespace.
Definition fp16.cpp:4
float real_t
A type to instantiate a real variable double-precision of 64-bits IEEE 754.
Definition qlibs_types.hpp:43