diff options
author | Kevin Hunter <hunteke@earlham.edu> | 2011-10-10 13:58:25 -0400 |
---|---|---|
committer | Kevin Hunter <hunteke@earlham.edu> | 2011-10-10 13:58:25 -0400 |
commit | 60f108553552eba8441589c47294f252e4ace1e5 (patch) | |
tree | acbddd7889d08f9d1f7063502fc334baa583859c /autodoc | |
parent | 76a0e6ee30cb7610bc0eb1d536476fc801f3a3bf (diff) |
Simplify logic to use std::vector's .empty()
No need to muck about with iterators, adding a loop, and 2 function
calls to test for empty: it's a std::vector under the hood, so use
.empty(), and inline it.
Diffstat (limited to 'autodoc')
-rw-r--r-- | autodoc/inc/ary_i/ci_text2.hxx | 2 | ||||
-rw-r--r-- | autodoc/source/ary_i/kernel/ci_text2.cxx | 12 |
2 files changed, 1 insertions, 13 deletions
diff --git a/autodoc/inc/ary_i/ci_text2.hxx b/autodoc/inc/ary_i/ci_text2.hxx index 8e1c202a5636..eef1d639a0bd 100644 --- a/autodoc/inc/ary_i/ci_text2.hxx +++ b/autodoc/inc/ary_i/ci_text2.hxx @@ -72,7 +72,7 @@ class DocuTex2 DYN DocuToken & let_drToken ); const TokenList & Tokens() const { return aTokens; } - bool IsEmpty() const; + bool IsEmpty() const { return aTokens.empty(); } const String & TextOfFirstToken() const; String & Access_TextOfFirstToken(); diff --git a/autodoc/source/ary_i/kernel/ci_text2.cxx b/autodoc/source/ary_i/kernel/ci_text2.cxx index 00a5a7eb32fc..dea062f4aca5 100644 --- a/autodoc/source/ary_i/kernel/ci_text2.cxx +++ b/autodoc/source/ary_i/kernel/ci_text2.cxx @@ -77,18 +77,6 @@ DocuTex2::AddToken( DYN DocuToken & let_drToken ) aTokens.push_back(&let_drToken); } -bool -DocuTex2::IsEmpty() const -{ - for ( ary::inf::DocuTex2::TokenList::const_iterator - iter = aTokens.begin(); - iter != aTokens.end(); - ) - { - return false; - } - return true; -} using csi::dsapi::DT_TextToken; |