MCPcopy Create free account
hub / github.com/WheretIB/nullc / RestoreNamespaceStack

Function RestoreNamespaceStack

NULLC/Callbacks.cpp:3990–3997  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3988}
3989
3990void RestoreNamespaceStack(NamespaceInfo* info)
3991{
3992 if(!info)
3993 return;
3994 if(info->parent)
3995 RestoreNamespaceStack(info->parent);
3996 namespaceStack.push_back(info);
3997}
3998void RestoreNamespaces(bool undo, NamespaceInfo *parent, unsigned& prevBackupSize, unsigned& prevStackSize, NamespaceInfo*& lastNS)
3999{
4000 if(!undo)

Callers 1

RestoreNamespacesFunction · 0.85

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected