diff options
| author | 2023-08-31 20:28:28 +0000 | |
|---|---|---|
| committer | 2023-08-31 20:28:28 +0000 | |
| commit | cf48bbe40742d9c7355735be599615c7b9f511a2 (patch) | |
| tree | 1a6bf50be795a191e9477a2545d607ff954d3b08 /tools/aapt/SourcePos.cpp | |
| parent | 26447f1bff675f181e281cadcaaf99f5aa426d1c (diff) | |
| parent | cbb5520bc8556c9f4e477513cb157f717254ceb2 (diff) | |
Merge "[conflict] Merge "Migrate from android::String isEmpty to empty [aapt]" into main am: 2ce9592378 am: e5ee511172" into udc-dev-plus-aosp
Diffstat (limited to 'tools/aapt/SourcePos.cpp')
| -rw-r--r-- | tools/aapt/SourcePos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/SourcePos.cpp b/tools/aapt/SourcePos.cpp index e13028684414..354a65c14772 100644 --- a/tools/aapt/SourcePos.cpp +++ b/tools/aapt/SourcePos.cpp @@ -78,7 +78,7 @@ ErrorPos::print(FILE* to) const break; } - if (!this->file.isEmpty()) { + if (!this->file.empty()) { if (this->line >= 0) { fprintf(to, "%s:%d: %s%s\n", this->file.c_str(), this->line, type, this->error.c_str()); } else { |