mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 08:34:37 +08:00
Replace virtual keyword by override
virtual can be ambiguous. Applied changes correspond to clang-tidy fixes stemming from the modernize-use-override check. Change-Id: I973afd4680a5df587419777504aeb94467196b89
This commit is contained in:
@@ -57,7 +57,7 @@ class CERES_EXPORT_INTERNAL BlockRandomAccessDiagonalMatrix
|
||||
|
||||
// The destructor is not thread safe. It assumes that no one is
|
||||
// modifying any cells when the matrix is being destroyed.
|
||||
virtual ~BlockRandomAccessDiagonalMatrix();
|
||||
~BlockRandomAccessDiagonalMatrix() override;
|
||||
|
||||
// BlockRandomAccessMatrix Interface.
|
||||
CellInfo* GetCell(int row_block_id,
|
||||
|
||||
Reference in New Issue
Block a user