浏览代码

removed duplicate code

banana-cakes
FelixBrendel 6 年前
父节点
当前提交
a77b139305
共有 1 个文件被更改,包括 0 次插入18 次删除
  1. +0
    -18
      macros.hpp

+ 0
- 18
macros.hpp 查看文件

@@ -1,24 +1,6 @@
#pragma once
// #include <functional>

#define proc auto

#ifdef _DEBUG
# define if_debug if constexpr (true)
#else
# define if_debug if constexpr (false)
#endif

#ifdef _MSC_VER
# define debug_break() if_debug __debugbreak()
# define if_windows if constexpr (true)
# define if_linux if constexpr (false)
#else
# define debug_break() if_debug raise(SIGTRAP)
# define if_windows if constexpr (false)
# define if_linux if constexpr (true)
#endif

#define TOKENPASTE(x, y) x ## y
#define TOKENPASTE2(x, y) TOKENPASTE(x, y)



正在加载...
取消
保存