summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-ir-clone.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-ir-clone.h')
-rw-r--r--source/slang/slang-ir-clone.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/slang-ir-clone.h b/source/slang/slang-ir-clone.h
index d2d3b1f55..b483b5fcb 100644
--- a/source/slang/slang-ir-clone.h
+++ b/source/slang/slang-ir-clone.h
@@ -173,11 +173,11 @@ struct IRSimpleSpecializationKey
// In order to use this type as a `Dictionary` key we
// need it to support equality and hashing.
//
- // TODO: honestly we might consider having `GetHashCode`
+ // TODO: honestly we might consider having `getHashCode`
// and `operator==` defined for `List<T>`.
bool operator==(IRSimpleSpecializationKey const& other) const;
- int GetHashCode() const;
+ HashCode getHashCode() const;
};
}