blob: e32d237f4a3e3e77ce0ba25fe008e05c475e8fcb (
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::to_string() const
{
return Strings::format("%s(%d)", this->file_name, this->line_number);
}
}
|