diff options
author | David Malcolm <dmalcolm@redhat.com> | 2022-06-27 17:00:34 -0400 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2022-06-27 17:00:34 -0400 |
commit | 26f77c4d19b827f3a2a8a9323df8e182e1389cb9 (patch) | |
tree | 34c4715289d2b7bd46c08eca7265916bfc9304e6 /gcc/cp/module.cc | |
parent | 0a8333ade9a03fc203055e69c05008d9733e9e9d (diff) | |
download | gcc-26f77c4d19b827f3a2a8a9323df8e182e1389cb9.zip gcc-26f77c4d19b827f3a2a8a9323df8e182e1389cb9.tar.gz gcc-26f77c4d19b827f3a2a8a9323df8e182e1389cb9.tar.bz2 |
Add 'final' and 'override' in various places
gcc/cp/ChangeLog:
* cxx-pretty-print.h: Add "final" and "override" to various vfunc
implementations, removing redundant "virtual" as appropriate.
* module.cc: Likewise.
gcc/ChangeLog:
* genmatch.cc: Add "final" and "override" to various vfunc
implementations, removing redundant "virtual" as appropriate.
* gensupport.cc: Likewise.
* gimple-range-cache.h: Likewise.
* ipa-icf-gimple.h: Likewise.
* ipa-icf.h: Likewise.
* read-md.h: Likewise.
* read-rtl-function.cc: Likewise.
* tree-ssa-loop-ch.cc: Likewise.
* tree-ssa-sccvn.cc: Likewise.
gcc/lto/ChangeLog:
* lto-dump.cc: Add "final" and "override" to various vfunc
implementations, removing redundant "virtual" as appropriate.
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
Diffstat (limited to 'gcc/cp/module.cc')
-rw-r--r-- | gcc/cp/module.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc index 7ee779d..753963a 100644 --- a/gcc/cp/module.cc +++ b/gcc/cp/module.cc @@ -1483,10 +1483,10 @@ private: protected: using allocator::grow; - virtual char *grow (char *, unsigned needed); + char *grow (char *, unsigned needed) final override; #if MAPPED_WRITING using allocator::shrink; - virtual void shrink (char *); + void shrink (char *) final override; #endif public: |