[Libreoffice-commits] core.git: io/source
Mario J. Rugiero
mrugiero at gmail.com
Tue Nov 10 02:35:34 PST 2015
io/source/acceptor/acc_socket.cxx | 5 +++--
io/source/connector/ctr_socket.cxx | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
New commits:
commit b62f1bd5bf850ce18bafa332d5da121939bb5133
Author: Mario J. Rugiero <mrugiero at gmail.com>
Date: Mon Nov 9 11:37:26 2015 -0300
Replaced for_each and algorithm include by range based loop and exception.
Since the only thing used from algorithm was std::for_each, and std::exception
was being used without including it.
Change-Id: Ida415bfbcae2b14811183a6afa46b6f6e1ac6ab2
Reviewed-on: https://gerrit.libreoffice.org/19864
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx
index a5321eb..976b782 100644
--- a/io/source/acceptor/acc_socket.cxx
+++ b/io/source/acceptor/acc_socket.cxx
@@ -19,7 +19,7 @@
#include "acceptor.hxx"
-#include <algorithm>
+#include <exception>
#include <unordered_set>
#include <osl/mutex.hxx>
@@ -123,7 +123,8 @@ namespace io_acceptor {
}
}
- ::std::for_each(listeners.begin(), listeners.end(), t);
+ for(auto& listener : listeners)
+ t(listener);
}
static void callStarted(Reference<XStreamListener> xStreamListener)
diff --git a/io/source/connector/ctr_socket.cxx b/io/source/connector/ctr_socket.cxx
index 6b53436..3d7e320 100644
--- a/io/source/connector/ctr_socket.cxx
+++ b/io/source/connector/ctr_socket.cxx
@@ -20,7 +20,7 @@
#include "connector.hxx"
#include <rtl/ustrbuf.hxx>
-#include <algorithm>
+#include <exception>
using namespace ::osl;
using namespace ::com::sun::star::uno;
@@ -43,7 +43,8 @@ namespace stoc_connector {
}
}
- ::std::for_each(listeners.begin(), listeners.end(), t);
+ for(auto& listener : listeners)
+ t(listener);
}
More information about the Libreoffice-commits
mailing list