vcpkg/toolsrc/src/LineInfo.cpp

10 lines
206 B
C++
Raw Normal View History

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