Skip to content

Commit

Permalink
fixed cpp20 issue on char array in Log.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
randaz81 committed Nov 8, 2023
1 parent f72a5e1 commit ad926af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libYARP_os/src/yarp/os/Log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ inline void printable_output(std::ostream* ost,
YARP_UNUSED(externaltime);

#if !defined (_MSC_VER)
static constexpr const char* level_char = u8"\u25CF";
static constexpr const char level_char[] = "\u25cf";
#else
static constexpr const char* level_char = "*";
#endif
Expand Down

0 comments on commit ad926af

Please sign in to comment.