Moved Common to external git repo
Also changed namespace from LXC to PashaBibko::LXC
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <LXC.h>
|
||||
#include <Util.h>
|
||||
|
||||
#include <NodeTypes.h>
|
||||
#include <Lexer.h>
|
||||
|
||||
namespace LXC::Parser
|
||||
namespace PashaBibko::LXC::Parser
|
||||
{
|
||||
struct ParserError {};
|
||||
|
||||
@@ -15,6 +15,8 @@ namespace LXC::Parser
|
||||
name{}, contents{}, funcParams{}
|
||||
{}
|
||||
|
||||
FunctionAST(const FunctionAST& other) = delete;
|
||||
|
||||
FunctionAST(FunctionAST&& other) noexcept :
|
||||
name(std::move(other.name)), contents(std::move(other.contents)), funcParams(std::move(other.funcParams))
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user