Files
jak-project/old_compiler/cpp/goal/GoalPlace.cpp
T
2020-08-27 11:58:19 -04:00

7 lines
162 B
C++

#include "GoalPlace.h"
static std::shared_ptr<Place> none = std::make_shared<NonePlace>(TypeSpec(nullptr));
std::shared_ptr<Place> get_none() {
return none;
}