| 265 | } |
| 266 | |
| 267 | std::string Runtime::ReadFileText(const std::string& filePath) { |
| 268 | #ifdef APPLICATION_IN_DEBUG |
| 269 | std::lock_guard<std::mutex> lock(m_fileWriteMutex); |
| 270 | #endif |
| 271 | return File::ReadText(filePath); |
| 272 | } |
| 273 | |
| 274 | void Runtime::Lock() { |
| 275 | #ifdef APPLICATION_IN_DEBUG |
no outgoing calls
no test coverage detected