@@ -548,7 +548,7 @@ class ArrayProp<Property elem = Property<>, string newSummary = ""> :
548548 // In the non-trivial case, we define a mapped range to get internal hash
549549 // codes.
550550 let hashProperty = !if(!empty(elem.hashProperty),
551- [{::llvm:: hash_value(::llvm::ArrayRef<}] # elem.storageType # [{>{$_storage})}],
551+ [{hash_value(::llvm::ArrayRef<}] # elem.storageType # [{>{$_storage})}],
552552 [{[&]() -> ::llvm::hash_code {
553553 auto getElemHash = [](const auto& propStorage) -> ::llvm::hash_code {
554554 return }] # !subst("$_storage", "propStorage", elem.hashProperty) # [{;
@@ -762,7 +762,7 @@ class OptionalProp<Property p, bit canDelegateParsing = 1>
762762 }] # !subst("$_storage", "(*($_storage))", p.writeToMlirBytecode);
763763
764764 let hashProperty = !if(!empty(p.hashProperty), p.hashProperty,
765- [{ ::llvm:: hash_value($_storage.has_value() ? std::optional<::llvm::hash_code>{}] #
765+ [{ hash_value($_storage.has_value() ? std::optional<::llvm::hash_code>{}] #
766766 !subst("$_storage", "(*($_storage))", p.hashProperty) #[{} : std::nullopt) }]);
767767 assert !or(!not(delegatesParsing), !eq(defaultValue, "std::nullopt")),
768768 "For delegated parsing to be used, the default value must be nullopt. " #
0 commit comments