Skip to content

Commit

Permalink
Merge pull request #346 from frasercrmck/add-virtual-keyword
Browse files Browse the repository at this point in the history
[compiler] Add missing 'override' keyword. NFC
  • Loading branch information
frasercrmck authored Feb 7, 2024
2 parents 30cb745 + a7cd9fa commit 8218b3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class TargetExtTypeRemapper : public ValueMapTypeRemapper {
ReplaceSamplers(ReplaceSamplers),
ReplaceEvents(ReplaceEvents) {}

Type *remapType(Type *Ty) {
Type *remapType(Type *Ty) override {
// Look up the cache in case we've seen this type before.
if (auto I = TyReplacementCache.find(Ty); I != TyReplacementCache.end()) {
return I->getSecond();
Expand Down

0 comments on commit 8218b3e

Please sign in to comment.