diff options
| author | Elliott Hughes <enh@google.com> | 2018-11-29 22:51:00 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-11-29 22:51:00 +0000 |
| commit | f355ec703f519c3091853d85f61904be6dfb68aa (patch) | |
| tree | 82486a5104742260ab35382c0678165ebff85112 /libartbase | |
| parent | 0e211e55fe51adbd6bab7278ff1ceabea21faf78 (diff) | |
| parent | c1896c9a0e15df3a1b9a3a19bcd2a933b654fe06 (diff) | |
| download | art-f355ec703f519c3091853d85f61904be6dfb68aa.tar.gz art-f355ec703f519c3091853d85f61904be6dfb68aa.tar.bz2 art-f355ec703f519c3091853d85f61904be6dfb68aa.zip | |
Merge "C++17 compatibility: make WITH_TIDY=1 happy again."
Diffstat (limited to 'libartbase')
| -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(); } } |
