| 1151 | } |
| 1152 | } |
| 1153 | void clearLocal() { std::unique_lock<std::mutex> lock(localVariablesMutex); localVariables.clear(); } |
| 1154 | static void clearGlobal() { std::unique_lock<std::mutex> lock(globalVariablesMutex); globalVariables.clear(); } |
| 1155 | void clearFunc() { std::unique_lock<std::mutex> lock(customFunctionsMutex); customFunctions.clear(); } |
| 1156 | static void clearMutex() { mutex.clean_up(); } |
no test coverage detected