Fix -Wstring-conversion instance

llvm-svn: 297879
This commit is contained in:
Reid Kleckner 2017-03-15 19:50:02 +00:00
parent 48cdde0e59
commit 029dbd5e97
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void *realloc(void *ptr, size_t size) {
ALLOCATION_FUNCTION_ATTRIBUTE
void *_realloc_dbg(void *ptr, size_t size, int) {
CHECK(!"_realloc_dbg should not exist!");
UNREACHABLE("_realloc_dbg should not exist!");
return 0;
}