mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
common: Make TrimSourcePath constexpr (#6279)
This commit is contained in:
parent
3a6a17c708
commit
78cb48b23c
@ -11,7 +11,7 @@
|
||||
namespace Log {
|
||||
|
||||
// trims up to and including the last of ../, ..\, src/, src\ in a string
|
||||
inline const char* TrimSourcePath(std::string_view source) {
|
||||
constexpr const char* TrimSourcePath(std::string_view source) {
|
||||
const auto rfind = [source](const std::string_view match) {
|
||||
return source.rfind(match) == source.npos ? 0 : (source.rfind(match) + match.size());
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user