Skip to content

Commit f90af1c

Browse files
[MC] Drop const from a return type (NFC) (#146196)
We don't need const on a return type.
1 parent 7f6d739 commit f90af1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/MC/DXContainerRootSignature.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ struct RootParametersContainer {
6868
Tables.push_back(Table);
6969
}
7070

71-
const std::pair<uint32_t, uint32_t>
71+
std::pair<uint32_t, uint32_t>
7272
getTypeAndLocForParameter(uint32_t Location) const {
7373
const RootParameterInfo &Info = ParametersInfo[Location];
7474
return {Info.Header.ParameterType, Info.Location};

0 commit comments

Comments
 (0)