General Purpose library for Freestanding C++ and POSIX systems
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

21 行
285 B

#pragma once
#if defined(_M_IX86) or defined(__i386)
#if __clang__
#elif __GNUG__
#endif // __clang__
#elif defined(_M_X64) or defined(__amd64)
#include "gp/system/platforms/gcc-x86_64.hpp"
#if __clang__
#elif __GNUG__
#endif // __clang__
#endif // CPU ARCHITECTURE