diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-07-25 18:46:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-07-25 21:54:18 +0200 |
commit | 58222feb7fee0c08fb54b9ee29f8f0674c5cf508 (patch) | |
tree | 90fdd2ea692720c26b91d5f7ca557de2ef4902c5 /include | |
parent | 22fd015d640aa0261c65b70624b46cc202c66049 (diff) |
warning STL4015: std::iterator is deprecated (clang-cl)
Change-Id: I92dce067ab05cbef1b13dddd9b4de221051c9320
Reviewed-on: https://gerrit.libreoffice.org/57999
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/stl_types.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx index 927a3d39df40..c3539bbe21a0 100644 --- a/include/comphelper/stl_types.hxx +++ b/include/comphelper/stl_types.hxx @@ -132,8 +132,7 @@ inline mem_fun1_t<Tp,Arg> mem_fun(void (Tp::*f)(Arg)) /** output iterator that appends OUStrings into an OUStringBuffer. */ -class OUStringBufferAppender : - public ::std::iterator< ::std::output_iterator_tag, void, void, void, void> +class OUStringBufferAppender { public: typedef OUStringBufferAppender Self; |