vcpkg/toolsrc/src/LineInfo.cpp

12 lines
221 B
C++
Raw Normal View History

2017-03-14 08:14:00 +08:00
#include "pch.h"
#include "LineInfo.h"
#include "vcpkg_Strings.h"
namespace vcpkg
{
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);
}
}