aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/LineInfo.h
blob: 66d91c520434d028229daf6d3f8e400ca13906ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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 lineno, const char* filename) : line_number(lineno), file_name(filename) {}

        std::string to_string() const;
    };
}

#define VCPKG_LINE_INFO vcpkg::LineInfo(__LINE__, __FILE__)