Merge pull request #5617 from Beep6581/devirtualize

devirtualize method calls by declaring classes and methods final
This commit is contained in:
Ingo Weyrich
2020-02-07 17:06:30 +01:00
committed by GitHub
60 changed files with 116 additions and 116 deletions

View File

@@ -21,7 +21,7 @@ struct camera_const_levels {
int levels[4];
};
class CameraConst
class CameraConst final
{
private:
std::string make_model;
@@ -63,7 +63,7 @@ public:
void update_globalGreenEquilibration(bool other);
};
class CameraConstantsStore
class CameraConstantsStore final
{
private:
std::map<std::string, CameraConst *> mCameraConstants;