This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
wongola/lib/Loc.cpp

15 lines
192 B
C++
Raw Normal View History

#include "Loc.hpp"
namespace wg
{
/*explicit*/ Loc::Loc(std::filesystem::path origin, int line)
: m_origin { origin }
, m_line { line }
{
}
/*virtual*/ Loc::~Loc()
{
}
}