blob: d1bf9a4b15107a45a0b471cff346613104e695e1 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "pch.h"
#include "LineInfo.h"
#include "vcpkg_Strings.h"
namespace vcpkg
{
std::string LineInfo::to_string() const { return Strings::format("%s(%d)", this->file_name, this->line_number); }
}
|