summaryrefslogtreecommitdiff
path: root/Utilities/ClangTidyModule/Tests/cmake-use-pragma-once/cmake-use-pragma-once-include-guards.h
blob: 687306db33e9ad74268cd6ba2fdd4177ae22e20f (plain)
1
2
3
4
5
6
7
8
9
#ifndef INCLUDE_GUARDS_H
#define INCLUDE_GUARDS_H

int includeGuards()
{
  return 0;
}

#endif