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