23 Super::emplace_back(std::forward<V>(Value));
24 T *Pointer = &Super::back();
25 auto Deleter = [
this](
const T *) { Super::pop_back(); };
26 return std::unique_ptr<T, decltype(Deleter)>(Pointer, Deleter);
auto PushScope(V &&Value)
Push this scope into the stack.
std::deque< FString > Super
A stack to keep track of nested scopes.