| 436 | } |
| 437 | |
| 438 | inline uint64_t hash_combine(uint64_t a, uint64_t b) { |
| 439 | // Note: The magic number comes from the golden ratio |
| 440 | return a ^ (0x9E3779B97F4A7C17ull + b + (b >> 2) + (a << 6)); |
| 441 | } |
| 442 | |
| 443 | inline bool extract_include_info_from_compile_error(std::string log, |
| 444 | std::string& name, |
no outgoing calls
no test coverage detected