mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-16 15:19:03 +08:00
10 lines
206 B
C++
10 lines
206 B
C++
#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); }
|
|
}
|