diff options
Diffstat (limited to 'base/file_util_posix.cc')
-rw-r--r-- | base/file_util_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/file_util_posix.cc b/base/file_util_posix.cc index 7e4c3a9..8df0d27 100644 --- a/base/file_util_posix.cc +++ b/base/file_util_posix.cc @@ -633,7 +633,7 @@ FileEnumerator::FileEnumerator(const FilePath& root_path, // The Windows version of this code appends the pattern to the root_path, // potentially only matching against items in the top-most directory. // Do the same here. - if (pattern.size() == 0) + if (pattern.empty()) pattern_ = FilePath::StringType(); pending_paths_.push(root_path); } |