aboutsummaryrefslogtreecommitdiff
path: root/buildtools/codegen/CodegenOutput.cpp
blob: 214ded6c4560404fa7b0282eb75bb1c1f235068b (plain)
1
2
3
4
5
6
7
#include "CodegenOutput.hpp"

#include <utility>

void CodegenOutput::AddOutputThing(CodegenOutputThing thing) {
	mOutThings.push_back(std::move(thing));
}