MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / pop

Method pop

Engine/source/console/stringStack.cpp:197–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195static ConsoleValue gNothing;
196
197ConsoleValue* ConsoleValueStack::pop()
198{
199 if (mStackPos == 0) {
200 AssertFatal(false, "Console Value Stack is empty");
201 return &gNothing;
202 }
203
204 return &mStack[--mStackPos];
205}
206
207void ConsoleValueStack::pushFrame()
208{

Callers 15

main.csFile · 0.45
main.csFile · 0.45
ConvexEditorPluginFunction · 0.45
ParticleEditorPluginFunction · 0.45
main.csFile · 0.45
main.csFile · 0.45
NavEditorPluginFunction · 0.45
EditorGuiFunction · 0.45
EditorGui.ed.csFile · 0.45
RiverEditorPluginFunction · 0.45
GuiOffscreenCanvasFunction · 0.45
disableOculusVRDisplayFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected