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