| 12 | } |
| 13 | |
| 14 | void Deserializer::validateDebuggingInfo(std::string& value, const std::string& expectedVal) { |
| 15 | #if defined(DESER_DEBUG) && (defined(RUNTIME_CHECKS) || !defined(NDEBUG)) |
| 16 | deserializeValue<std::string>(value); |
| 17 | DASSERT(value == expectedVal); |
| 18 | #endif |
| 19 | // DO NOTHING |
| 20 | UNUSED(value); |
| 21 | UNUSED(expectedVal); |
| 22 | } |
| 23 | |
| 24 | } // namespace common |
| 25 | } // namespace lbug |
no outgoing calls
no test coverage detected