kl_compiler_cfg.h

来自「使用c语言实现的内存池,并且进行了封装,与stl配合使用,测试效率」· C头文件 代码 · 共 24 行

H
24
字号
///
/// @file kl_compiler_cfg.h
/// @author Kevin Lynx
/// @date 3.6.2008
///
#ifndef ___KL_COMPILER_CFG_H_
#define ___KL_COMPILER_CFG_H_

#include <cctype>
#include <cstddef>

#ifdef _MSC_VER
#pragma once
#endif

#ifndef KL_COMMON_NAMESPACE_BEGIN
#define KL_COMMON_NAMESPACE_BEGIN namespace kl_common {
#endif

#ifndef KL_COMMON_NAMESPACE_END
#define KL_COMMON_NAMESPACE_END }
#endif

#endif // end ___KL_COMPILER_CFG_H_

⌨️ 快捷键说明

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