We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70a9b7f commit f1dd0ceCopy full SHA for f1dd0ce
llvm/include/llvm/ObjectYAML/DXContainerYAML.h
@@ -90,16 +90,15 @@ struct RootDescriptorYaml {
90
#include "llvm/BinaryFormat/DXContainerConstants.def"
91
};
92
93
-using ParameterData =
94
- std::variant<RootConstantsYaml, RootDescriptorYaml>;
+using ParameterData = std::variant<RootConstantsYaml, RootDescriptorYaml>;
95
96
struct RootParameterYamlDesc {
97
uint32_t Type;
98
uint32_t Visibility;
99
uint32_t Offset;
100
ParameterData Data;
101
102
- RootParameterYamlDesc(){};
+ RootParameterYamlDesc() {};
103
RootParameterYamlDesc(uint32_t T) : Type(T) {}
104
105
0 commit comments