⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sassert.h

📁 hoard内存管理器
💻 H
字号:
#ifndef _SASSERT_H_#define _SASSERT_H_/** * @class  sassert * @brief  Implements compile-time assertion checking. * @author Emery Berger <http://www.cs.umass.edu/~emery> * * @code *   sassert<(1+1 == 2)> CheckOnePlusOneIsTwo; * @endcode * * This code is part of the Hoard distribution and is governed by its license. * <http://www.hoard.org> * */namespace HL {  template <int assertion>    class sassert;  template<> class sassert<1> {  public:    enum { VALUE = 1 };  };}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -