Skip to content

Commit

Permalink
Partial Revert "std::tuple support (Resolving #103) (#104)"
Browse files Browse the repository at this point in the history
This partial reverts commit 8b6a9c2.

The being-reverted-change put uarg{1..10} in all translation unit that
include "boost/phoenix/stl.hpp", should that file is being included by
multiple translation unit, each of those translation units will have one
definition of each of uarg{1..10}. Thus, we'll run into below error:

> multiple definition of `boost::phoenix::placeholders::uarg1'

Partial Revert the change in question by removing
"boost/phoenix/stl/tuple.hpp" from "boost/phoenix/stl.hpp".
  • Loading branch information
sgn committed Nov 27, 2022
1 parent faadf75 commit 56f2d22
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion include/boost/phoenix/stl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@

#include <boost/phoenix/stl/algorithm.hpp>
#include <boost/phoenix/stl/container.hpp>
#include <boost/phoenix/stl/tuple.hpp>

#endif

0 comments on commit 56f2d22

Please sign in to comment.