Replace size() == 0 with is_empty().

This commit is contained in:
Yufeng Ying
2025-03-20 00:07:31 +08:00
parent c7ea8614d7
commit 4f4031a675
147 changed files with 300 additions and 300 deletions

View File

@@ -389,7 +389,7 @@ PackedStringArray XRServer::get_suggested_tracker_names() const {
}
}
if (arr.size() == 0) {
if (arr.is_empty()) {
// no suggestions from our tracker? include our defaults
arr.push_back(String("head"));
arr.push_back(String("left_hand"));
@@ -412,7 +412,7 @@ PackedStringArray XRServer::get_suggested_pose_names(const StringName &p_tracker
}
}
if (arr.size() == 0) {
if (arr.is_empty()) {
// no suggestions from our tracker? include our defaults
arr.push_back(String("default"));