Skip to content

Commit 45a10ec

Browse files
authored
[NFC] Fix include guards (#16)
1 parent dd8382e commit 45a10ec

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

include/Config.h.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
/* */
88
/*===----------------------------------------------------------------------===*/
99

10+
#ifndef HLSLTEST_CONFIG_H
11+
#define HLSLTEST_CONFIG_H
12+
1013
/* Enable D3D12 Support */
1114
#cmakedefine HLSLTEST_ENABLE_D3D12
1215

@@ -18,3 +21,5 @@
1821

1922
/* If building for apple platforms */
2023
#cmakedefine01 APPLE
24+
25+
#endif // HLSLTEST_CONFIG_H

include/Support/Pipeline.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13+
#ifndef HLSLTEST_SUPPORT_PIPELINE_H
14+
#define HLSLTEST_SUPPORT_PIPELINE_H
15+
1316
#include "llvm/ADT/SmallVector.h"
1417
#include "llvm/ADT/StringRef.h"
1518
#include "llvm/Support/YAMLTraits.h"
@@ -167,3 +170,5 @@ template <> struct ScalarEnumerationTraits<hlsltest::DataAccess> {
167170
};
168171
} // namespace yaml
169172
} // namespace llvm
173+
174+
#endif // HLSLTEST_SUPPORT_PIPELINE_H

0 commit comments

Comments
 (0)