From 6775e40aeb887f15dc9182b250cdc4100aa79ce0 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Fri, 4 Mar 2011 21:03:47 +0000 Subject: Change other usages of .size() to .empty() when applicable. BUG=carnitas TEST=compiles Review URL: http://codereview.chromium.org/6609008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76962 0039d316-1c4b-4281-b951-d872f2087c98 --- courgette/encoded_program.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'courgette/encoded_program.cc') diff --git a/courgette/encoded_program.cc b/courgette/encoded_program.cc index 8439d31..5169c16 100644 --- a/courgette/encoded_program.cc +++ b/courgette/encoded_program.cc @@ -195,7 +195,7 @@ void EncodedProgram::AddCopy(uint32 count, const void* bytes) { // For compression of files with large differences this makes a small (4%) // improvement in size. For files with small differences this degrades the // compressed size by 1.3% - if (ops_.size() > 0) { + if (!ops_.empty()) { if (ops_.back() == COPY1) { ops_.back() = COPY; copy_counts_.push_back(1); -- cgit v1.1