43#ifndef LASS_GUARDIAN_OF_INCLUSION_META_IS_CONST_H
44#define LASS_GUARDIAN_OF_INCLUSION_META_IS_CONST_H
53template <
typename T>
struct IsConst :
public False {};
54template <
typename T>
struct IsConst<T*> :
public False {};
55template <
typename T>
struct IsConst<T*
const> :
public False {};
56template <
typename T>
struct IsConst<T&> :
public False {};
57template <
typename T>
struct IsConst<const T> :
public True {};
58template <
typename T>
struct IsConst<const T*> :
public True {};
59template <
typename T>
struct IsConst<const T&> :
public True {};
Library for Assembled Shared Sources.