summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/phoenix/test/algorithm/for_each2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/phoenix/test/algorithm/for_each2.cpp')
-rw-r--r--src/boost/libs/phoenix/test/algorithm/for_each2.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/boost/libs/phoenix/test/algorithm/for_each2.cpp b/src/boost/libs/phoenix/test/algorithm/for_each2.cpp
new file mode 100644
index 000000000..66aac15cc
--- /dev/null
+++ b/src/boost/libs/phoenix/test/algorithm/for_each2.cpp
@@ -0,0 +1,47 @@
+/*=============================================================================
+ Copyright (c) 2005-2007 Dan Marsden
+ Copyright (c) 2005-2007 Joel de Guzman
+ Copyright (c) 2014-2015 John Fletcher
+
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+==============================================================================*/
+
+#include <boost/phoenix.hpp>
+#include <boost/phoenix/core.hpp>
+#include <boost/phoenix/stl/algorithm/iteration.hpp>
+#include <boost/detail/lightweight_test.hpp>
+
+#include <functional>
+#include <vector>
+#include <string>
+#include <sstream>
+
+namespace
+{
+
+ void for_each_test()
+ {
+ return;
+ using boost::phoenix::for_each;
+ using boost::phoenix::lambda;
+ using boost::phoenix::ref;
+ using boost::phoenix::arg_names::arg1;
+
+ std::vector<int> v;
+ for (int i = 1; i < 10; i++)
+ v.push_back(i);
+
+ int x = 0;
+ for_each(arg1, lambda[ref(x) += arg1])(v);
+ BOOST_TEST(x == 45);
+ return;
+ }
+
+}
+
+int main()
+{
+ for_each_test();
+ boost::report_errors();
+}