Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Utilities/ClangTidyModule/Tests/cmake-use-pragma-once/cmake-use-pragma-once-include-guards.h
3156 views
1
#ifndef INCLUDE_GUARDS_H
2
#define INCLUDE_GUARDS_H
3
4
int includeGuards()
5
{
6
return 0;
7
}
8
9
#endif
10
11