mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:37:35 +00:00
AK: Store the 'extra' field of ScopeLogger as String
It was previously stored as a StringView, which prevented us from using temporary strings in the 'extra' argument. The performance hit doesn't really matter because ScopeLogger is used exclusively for debugging.
This commit is contained in:
parent
87e6d5351e
commit
316fef5602
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public:
|
|||
private:
|
||||
static inline size_t m_depth = 0;
|
||||
SourceLocation m_location;
|
||||
StringView m_extra;
|
||||
String m_extra;
|
||||
};
|
||||
|
||||
template<>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue