cmake/Utilities/ClangTidyModule/Tests/cmake-use-pragma-once/cmake-use-pragma-once-include-guards.h
2023-05-23 16:38:00 +02:00

10 lines
95 B
C

#ifndef INCLUDE_GUARDS_H
#define INCLUDE_GUARDS_H
int includeGuards()
{
return 0;
}
#endif