diff options
author | 2023-08-24 19:02:33 +0000 | |
---|---|---|
committer | 2023-08-25 16:20:39 +0000 | |
commit | 8f74b2a12bbb6088e4225dd21b5bf070f48a0d88 (patch) | |
tree | 0579fe7d1e868e59bce9b6d72a67c8b02895794a /tools/aapt/SourcePos.cpp | |
parent | f353aecc0b09770a24b4ddeb1d1e6d61815a1f78 (diff) |
Migrate from android::String isEmpty to empty [aapt]
This empty method is different from the old one - it aligns with
std::string definition.
Bug: 295394788
Test: make checkbuild
Change-Id: I1900f2285ee3c3b1eb57d2cef3990896a64dae01
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 { |