Skip to content

Commit f5720af

Browse files
author
joaosaffran
committed
fix import issues
1 parent 3b1ce3b commit f5720af

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

llvm/lib/Target/DirectX/DXILRootSignature.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
/// Root Signatures.
1111
///
1212
//===----------------------------------------------------------------------===//
13+
#ifndef LLVM_LIB_TARGET_DIRECTX_DXILROOTSIGNATURE_H
14+
#define LLVM_LIB_TARGET_DIRECTX_DXILROOTSIGNATURE_H
1315

1416
#include "llvm/ADT/DenseMap.h"
1517
#include "llvm/Analysis/DXILMetadataAnalysis.h"
@@ -45,7 +47,7 @@ class RootSignatureBindingInfo {
4547
RootSignatureBindingInfo() = default;
4648
RootSignatureBindingInfo(
4749
SmallDenseMap<const Function *, mcdxbc::RootSignatureDesc> Map)
48-
: FuncToRsMap(Map) {};
50+
: FuncToRsMap(Map){};
4951

5052
iterator find(const Function *F) { return FuncToRsMap.find(F); }
5153

@@ -109,3 +111,4 @@ class RootSignatureAnalysisPrinter
109111

110112
} // namespace dxil
111113
} // namespace llvm
114+
#endif

0 commit comments

Comments
 (0)