mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
build: reduce usage of constexpr
some compilers has lack of proper support for that
This commit is contained in:
@@ -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)
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user