Utils: Use constexpr instead of constexpr17

Not needed anymore, we require C++17 nowadays.

Change-Id: Idea34512314d4df619f48832ea9d7b4994586c14
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
hjk
2020-07-31 11:00:19 +02:00
parent d80a83c97c
commit cdf83ee792
2 changed files with 10 additions and 16 deletions

View File

@@ -25,12 +25,6 @@
#pragma once
#if __cplusplus >= 201703L
#define constexpr17 constexpr
#else
#define constexpr17 inline
#endif
#if __cplusplus >= 202002L
#define constexpr20 constexpr
#else