From 87724b3d099c2733c4dccfcc9681b831c51851ce Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sat, 24 Apr 2021 15:15:57 -0700 Subject: [PATCH] AK: Add default constructor to SourceLocation --- AK/SourceLocation.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AK/SourceLocation.h b/AK/SourceLocation.h index ba9366c48f..54bd62fdcf 100644 --- a/AK/SourceLocation.h +++ b/AK/SourceLocation.h @@ -24,6 +24,8 @@ public: return SourceLocation(file, line, function); } + constexpr SourceLocation() = default; + private: constexpr SourceLocation(const char* const file, u32 line, const char* const function) : m_function(function)