diff options
author | 2018-11-29 11:33:18 -0800 | |
---|---|---|
committer | 2018-11-29 11:33:18 -0800 | |
commit | c1896c9a0e15df3a1b9a3a19bcd2a933b654fe06 (patch) | |
tree | b68a5f5163f8da0da87d671a225addaa2a13095f /libartbase/base/file_utils.cc | |
parent | f2970cd870948a6ee1c8ecd30c9c3147d05aa0be (diff) |
C++17 compatibility: make WITH_TIDY=1 happy again.
Bug: http://b/111067277
Test: builds
Change-Id: I8b69ea3815e14bb6eb27f40c0dd01a85b340a355
Diffstat (limited to 'libartbase/base/file_utils.cc')
-rw-r--r-- | libartbase/base/file_utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libartbase/base/file_utils.cc b/libartbase/base/file_utils.cc index 1d106b2cdb..f8d6016315 100644 --- a/libartbase/base/file_utils.cc +++ b/libartbase/base/file_utils.cc @@ -157,7 +157,7 @@ static const char* GetAndroidDir(const char* env_var, const char* default_dir) { return dir; } else { LOG(FATAL) << error_msg; - return nullptr; + UNREACHABLE(); } } |