summaryrefslogtreecommitdiff
path: root/include/o3tl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-12 20:19:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-12 20:19:27 +0100
commite1771984c5bb5357646c706e35bfc9c47cf981c2 (patch)
tree36d19bcdbfb35ad29da2fee459f93101363906b2 /include/o3tl
parent99e118af6a7e296b3d6dcb812237f27a344c601a (diff)
More loplugin:cstylecast: o3tl
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: I7cb2c6ff2421d615599d178dc6eb3d62dd1becf7
Diffstat (limited to 'include/o3tl')
-rw-r--r--include/o3tl/enumrange.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/o3tl/enumrange.hxx b/include/o3tl/enumrange.hxx
index 9293b6cc912c..4f26c22337df 100644
--- a/include/o3tl/enumrange.hxx
+++ b/include/o3tl/enumrange.hxx
@@ -71,7 +71,7 @@ public:
template< typename T >
typename enumrange<T>::Iterator begin( enumrange<T> )
{
- return typename enumrange<T>::Iterator( (int)0 );
+ return typename enumrange<T>::Iterator( int(0) );
}
template< typename T >