summaryrefslogtreecommitdiffstats
path: root/o3d/utils
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-02 00:03:18 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-02 00:03:18 +0000
commitf6b8ce31c12a8fd5c969608bfdec0e2e8f1e99c3 (patch)
tree840cfc698d0c1287ef8802ca9a564ae7abdd0f13 /o3d/utils
parent9ad77099038a76c96f6c4d162fb0706426215a5f (diff)
downloadchromium_src-f6b8ce31c12a8fd5c969608bfdec0e2e8f1e99c3.zip
chromium_src-f6b8ce31c12a8fd5c969608bfdec0e2e8f1e99c3.tar.gz
chromium_src-f6b8ce31c12a8fd5c969608bfdec0e2e8f1e99c3.tar.bz2
Pure pedantry: Replace all ".size() == 0" with ".empty()".
BUG=carnitas TEST=compiles; existing unit tests. Review URL: http://codereview.chromium.org/6602049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76467 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/utils')
-rw-r--r--o3d/utils/cross/text_reader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/utils/cross/text_reader.cc b/o3d/utils/cross/text_reader.cc
index dccbffa..c6f1e56 100644
--- a/o3d/utils/cross/text_reader.cc
+++ b/o3d/utils/cross/text_reader.cc
@@ -48,7 +48,7 @@ TextReader::~TextReader() {
}
int TextReader::TestForEndOfLine(const std::string& eol) {
- if (eol.size() == 0) {
+ if (eol.empty()) {
return 0;
}
if (eol[0] == kLinefeed) {