summaryrefslogtreecommitdiffstats
path: root/autodoc/inc
diff options
context:
space:
mode:
authorElton Chung <elton@layerjet.com>2012-02-19 16:59:40 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-02-19 17:07:46 +0400
commitd30b4e9fb66f377295d8eeea8c1b1cf879aecdf6 (patch)
treea99079bda02a9d8dd5bd0d54666164f362314c52 /autodoc/inc
parentST_InfoListReader and ST_InfoListWriter seem to be unused (diff)
downloadcore-d30b4e9fb66f377295d8eeea8c1b1cf879aecdf6.tar.gz
core-d30b4e9fb66f377295d8eeea8c1b1cf879aecdf6.zip
Get rid of size() == 0
Diffstat (limited to 'autodoc/inc')
-rw-r--r--autodoc/inc/ary/info/ci_text.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/autodoc/inc/ary/info/ci_text.hxx b/autodoc/inc/ary/info/ci_text.hxx
index 4e8bf7a99073..a178ff77de19 100644
--- a/autodoc/inc/ary/info/ci_text.hxx
+++ b/autodoc/inc/ary/info/ci_text.hxx
@@ -62,7 +62,7 @@ class DocuText
{ aTokens.push_back(&let_drToken); }
const TokenList & Tokens() const { return aTokens; }
bool IsNoHtml() const { return NOT bUsesHtml; }
- bool IsEmpty() const { return aTokens.size() == 0; }
+ bool IsEmpty() const { return aTokens.empty(); }
private:
TokenList aTokens;