Gyoji Compiler
Loading...
Searching...
No Matches
pointers.hpp
1#pragma once
2
3#include <memory>
4//----------------------------
5// Unique pointer types to
6// be used internally to enforce
7// single ownership of these classes
8// in the tree.
9//----------------------------
10namespace Gyoji {
63 template <class T> using owned = std::unique_ptr<T>;
64};
65
All aspects of the Gyoji language belong in this namespace.
Definition gyoji-analysis.hpp:36