mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 19:39:00 +08:00
18 lines
419 B
C++
18 lines
419 B
C++
#pragma once
|
|
|
|
namespace vcpkg
|
|
{
|
|
struct LineInfo
|
|
{
|
|
int line_number;
|
|
const char* file_name;
|
|
|
|
constexpr LineInfo() : line_number(0), file_name(nullptr) {}
|
|
constexpr LineInfo(const int line_number, const char* file_name) : line_number(line_number), file_name(file_name) {}
|
|
|
|
std::string to_string() const;
|
|
};
|
|
}
|
|
|
|
#define VCPKG_LINE_INFO vcpkg::LineInfo(__LINE__, __FILE__)
|