diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:19:27 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:19:27 +0100 |
commit | e1771984c5bb5357646c706e35bfc9c47cf981c2 (patch) | |
tree | 36d19bcdbfb35ad29da2fee459f93101363906b2 /include | |
parent | 99e118af6a7e296b3d6dcb812237f27a344c601a (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')
-rw-r--r-- | include/o3tl/enumrange.hxx | 2 |
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 > |