2017-03-13 17:14:00 -07:00
|
|
|
#include "pch.h"
|
|
|
|
#include "LineInfo.h"
|
|
|
|
#include "vcpkg_Strings.h"
|
|
|
|
|
|
|
|
namespace vcpkg
|
|
|
|
{
|
2017-04-03 16:47:58 -07:00
|
|
|
std::string LineInfo::to_string() const
|
2017-03-13 17:14:00 -07:00
|
|
|
{
|
|
|
|
return Strings::format("%s(%d)", this->file_name, this->line_number);
|
|
|
|
}
|
|
|
|
}
|