cmake-use-pragma-once-include-guards.h 95 B

123456789
  1. #ifndef INCLUDE_GUARDS_H
  2. #define INCLUDE_GUARDS_H
  3. int includeGuards()
  4. {
  5. return 0;
  6. }
  7. #endif