mirror of
https://github.com/MaskRay/ccls.git
synced 2025-02-07 17:32:14 +00:00
11 lines
244 B
C++
11 lines
244 B
C++
#include "port.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void cquery_unreachable_internal(const char* msg, const char* file, int line) {
|
|
fprintf(stderr, "unreachable %s:%d %s\n", file, line, msg);
|
|
CQUERY_BUILTIN_UNREACHABLE;
|
|
abort();
|
|
}
|