AK: Make SourceLocation's copy assignment operator take const
This commit is contained in:
parent
af2ac67be3
commit
282c054ddc
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ public:
|
|||
|
||||
constexpr SourceLocation() = default;
|
||||
constexpr SourceLocation(SourceLocation const&) = default;
|
||||
SourceLocation& operator=(SourceLocation& other) = default;
|
||||
SourceLocation& operator=(SourceLocation const& other) = default;
|
||||
|
||||
private:
|
||||
constexpr SourceLocation(char const* const file, u32 line, char const* const function)
|
||||
|
|
|
|||
Loading…
Reference in a new issue