#ifndef NALL_STATIC_HPP #define NALL_STATIC_HPP namespace nall { template struct static_assert; template<> struct static_assert {}; template struct static_if { typedef true_type type; }; template struct static_if { typedef false_type type; }; } #endif