Minor note about `final`

static_polymorphism
Bradlee Speice 2020-08-30 23:48:27 -04:00
parent 7fa111a68a
commit 28d28b97aa
1 changed files with 2 additions and 2 deletions

View File

@ -536,8 +536,8 @@ Though the compiler nicely warns us that we shouldn't do this:
| ~~~~~~~~~~~^
```
C++ also has `override`, but doesn't make much sense to impose that as a requirement; inheritance
and concepts are orthogonal systems.
C++ also has `override` and `final`, but doesn't make much sense to impose that as a requirement;
inheritance and concepts are orthogonal systems.
# Implement methods on remote types