summaryrefslogtreecommitdiff
path: root/idlc/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-12 20:21:57 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-12 20:21:57 +0100
commit57bbe564ba171663f6335b27df12352c71ed1832 (patch)
tree9f2af6d33d3c35c4e6cf86c3f9226e885418a80c /idlc/inc
parentac489a4d36332a612e2601b659a0d30b7449f9c5 (diff)
More loplugin:cstylecast: idlc
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: I1cb9e69b8138cb5bb63f18231018f166b67b3072
Diffstat (limited to 'idlc/inc')
-rw-r--r--idlc/inc/astscope.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/inc/astscope.hxx b/idlc/inc/astscope.hxx
index af3d4d68781b..a258011c9545 100644
--- a/idlc/inc/astscope.hxx
+++ b/idlc/inc/astscope.hxx
@@ -37,7 +37,7 @@ public:
AstDeclaration* addDeclaration(AstDeclaration* pDecl);
sal_uInt32 nMembers() const
- { return (sal_uInt32)(m_declarations.size()); }
+ { return static_cast<sal_uInt32>(m_declarations.size()); }
DeclList::const_iterator getIteratorBegin() const
{ return m_declarations.begin(); }
DeclList::const_iterator getIteratorEnd() const