mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-07 17:27:55 +08:00
12 lines
221 B
C++
12 lines
221 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);
|
|
}
|
|
}
|