diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:19:10 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:19:10 +0100 |
commit | 99e118af6a7e296b3d6dcb812237f27a344c601a (patch) | |
tree | 0d063d0691f462d7eb32d74a30b09f7821a09108 /include/oox/ppt/comments.hxx | |
parent | d1a510c9bde5eb9ca8ec1aa3e81782b0615fc95b (diff) |
More loplugin:cstylecast: oox
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable
loplugin:cstylecast for some more cases" plus
solenv/clang-format/reformat-formatted-files
Change-Id: I8fd61e3220a4b9e08d4f97acde28600f31d448ca
Diffstat (limited to 'include/oox/ppt/comments.hxx')
-rw-r--r-- | include/oox/ppt/comments.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oox/ppt/comments.hxx b/include/oox/ppt/comments.hxx index db8a547f11cd..65f719fff9f4 100644 --- a/include/oox/ppt/comments.hxx +++ b/include/oox/ppt/comments.hxx @@ -105,7 +105,7 @@ class CommentList std::vector<Comment> cmLst; int getSize () { - return (int)cmLst.size(); + return static_cast<int>(cmLst.size()); } const Comment& getCommentAtIndex (int index); }; |