Codechange: replace char* with std::string_view

This commit is contained in:
Rubidium
2025-04-27 20:08:02 +02:00
committed by rubidium42
parent e1859df1c0
commit 49ef3eee13
25 changed files with 53 additions and 49 deletions
+1 -1
View File
@@ -470,7 +470,7 @@ template <Commands Tcmd> struct CommandTraits;
static constexpr auto &proc = proc_; \
static constexpr CommandFlags flags = flags_; \
static constexpr CommandType type = type_; \
static inline constexpr const char *name = #proc_; \
static inline constexpr std::string_view name = #proc_; \
};
/** Storage buffer for serialized command data. */