1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

build: reduce usage of constexpr

some compilers has lack of proper support for that
This commit is contained in:
Alexander Alekhin
2019-04-22 15:41:27 +03:00
parent 8af96248bf
commit 44bd849697
6 changed files with 59 additions and 28 deletions
@@ -17,7 +17,7 @@ struct LogTag
const char* name;
LogLevel level;
inline constexpr LogTag(const char* _name, LogLevel _level)
inline LogTag(const char* _name, LogLevel _level)
: name(_name)
, level(_level)
{}