MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / copy

Method copy

Engine/source/console/compiler.cpp:322–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320}
321
322CompilerLocalVariableToRegisterMappingTable CompilerLocalVariableToRegisterMappingTable::copy()
323{
324 // Trivilly copyable as its all plain old data and using STL containers... (We want a deep copy though!)
325 CompilerLocalVariableToRegisterMappingTable table;
326 table.localVarToRegister = localVarToRegister;
327 return table;
328}
329
330void CompilerLocalVariableToRegisterMappingTable::reset()
331{

Callers 2

getReturnBufferFunction · 0.45
compileExecMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected