mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
cleanup: remove 'const constexpr' pairs
'constexpr' implies 'const' since it is a stronger guarantee, so let's remove the redundant 'const'. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
afa989e32c
commit
5d1f12438b
3 changed files with 9 additions and 9 deletions
|
@ -14,7 +14,7 @@
|
|||
#include <limits>
|
||||
#include <QLocale>
|
||||
|
||||
static const constexpr double NaN = std::numeric_limits<double>::quiet_NaN();
|
||||
static constexpr double NaN = std::numeric_limits<double>::quiet_NaN();
|
||||
|
||||
// Typedefs for year / quarter or month binners
|
||||
using year_quarter = std::pair<unsigned short, unsigned short>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue