* @brief Returns true if the console output file is open. */
| 241 | * @brief Returns true if the console output file is open. |
| 242 | */ |
| 243 | bool Console::Export::isOpen() const |
| 244 | { |
| 245 | #ifdef BUILD_COMMERCIAL |
| 246 | return m_isOpen.load(std::memory_order_relaxed); |
| 247 | #else |
| 248 | return false; |
| 249 | #endif |
| 250 | } |
| 251 | |
| 252 | /** |
| 253 | * @brief Returns true if console log export is enabled. |
no test coverage detected