|
|
@ -51,8 +51,9 @@ public:
|
|
|
|
constexpr int column() const noexcept { return columnOffset; }
|
|
|
|
constexpr int column() const noexcept { return columnOffset; }
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
private:
|
|
|
|
constexpr source_location(const char *fileName, const char *functionName,
|
|
|
|
constexpr source_location(const char *fileName,
|
|
|
|
const int lineNumber,
|
|
|
|
const int lineNumber,
|
|
|
|
|
|
|
|
const char *functionName,
|
|
|
|
const int columnOffset) noexcept
|
|
|
|
const int columnOffset) noexcept
|
|
|
|
: fileName(fileName), functionName(functionName), lineNumber(lineNumber),
|
|
|
|
: fileName(fileName), functionName(functionName), lineNumber(lineNumber),
|
|
|
|
columnOffset(columnOffset) {}
|
|
|
|
columnOffset(columnOffset) {}
|
|
|
|