mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-25 03:53:32 +01:00
12 lines
220 B
C++
12 lines
220 B
C++
![]() |
#include "pch.h"
|
||
|
#include "LineInfo.h"
|
||
|
#include "vcpkg_Strings.h"
|
||
|
|
||
|
namespace vcpkg
|
||
|
{
|
||
|
std::string LineInfo::toString() const
|
||
|
{
|
||
|
return Strings::format("%s(%d)", this->file_name, this->line_number);
|
||
|
}
|
||
|
}
|