mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:17:44 +00:00
AK: Add default constructor to SourceLocation
This commit is contained in:
parent
c248bbc7fd
commit
87724b3d09
1 changed files with 2 additions and 0 deletions
|
@ -24,6 +24,8 @@ public:
|
||||||
return SourceLocation(file, line, function);
|
return SourceLocation(file, line, function);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
constexpr SourceLocation() = default;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
constexpr SourceLocation(const char* const file, u32 line, const char* const function)
|
constexpr SourceLocation(const char* const file, u32 line, const char* const function)
|
||||||
: m_function(function)
|
: m_function(function)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue