Preprocessor Macros: Difference between revisions

No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


==Include Guard==
==Include Guard==
For most modern compilers (VS Code, gcc, llvm), you can just add a <code>#pragma once</code> at the top.
For most modern compilers (MS Visual C++, GCC, Clang/llvm), you can just add a <code>#pragma once</code> at the top.<br>
Note that this is not defined in the standard.
Note that this is not defined in the standard but [[Wikipedia: pragma once#Portability]] lists support for most common compilers.


For older compilers:
For older compilers: