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