Add missing override specifier [NFC]

This should fix a -Winconsistent-missing-override warning that is only
visible when Z3 is enabled.

llvm-svn: 356228
This commit is contained in:
Aaron Puchert 2019-03-15 02:30:07 +00:00
parent 717b1c804b
commit 2f741868ed
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public:
Z3_dec_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort));
}
void Profile(llvm::FoldingSetNodeID &ID) const {
void Profile(llvm::FoldingSetNodeID &ID) const override {
ID.AddInteger(
Z3_get_ast_id(Context.Context, reinterpret_cast<Z3_ast>(Sort)));
}