DCM-UPB / QNets

C++ library that allows to use (Feed Forward) Neural Networks in C++ with a few simple commands.
Other
2 stars 3 forks source link

Use C++11 final and override keywords for overwriting virtual methods #29

Closed Ithanil closed 5 years ago

Ithanil commented 6 years ago

C++11 allow two new keywords to make clearer to both user/programmer and compiler, if a virtual class method is overriding a virtual base class method (override keyword) or if a non-virtual class method is the final implementation of a virtual base class method (final keyword).

To do:

Benefit:

Ithanil commented 5 years ago

37