| 7042 | IMutableContext *IMutableContext::currentContext = nullptr; |
| 7043 | |
| 7044 | void IMutableContext::createContext() |
| 7045 | { |
| 7046 | currentContext = new Context(); |
| 7047 | } |
| 7048 | |
| 7049 | void cleanUpContext() { |
| 7050 | delete IMutableContext::currentContext; |
nothing calls this directly
no outgoing calls
no test coverage detected