Compare commits
3 Commits
svn-branch
...
sandbox-br
Author | SHA1 | Date | |
---|---|---|---|
98eed29788 | |||
d8a40f48a6 | |||
f8c6e5efb6 |
0
doc/html/images/alert.png
Executable file → Normal file
Before Width: | Height: | Size: 603 B After Width: | Height: | Size: 603 B |
0
doc/html/images/home.png
Executable file → Normal file
Before Width: | Height: | Size: 358 B After Width: | Height: | Size: 358 B |
0
doc/html/images/next.png
Executable file → Normal file
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |
0
doc/html/images/note.png
Executable file → Normal file
Before Width: | Height: | Size: 658 B After Width: | Height: | Size: 658 B |
0
doc/html/images/prev.png
Executable file → Normal file
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
0
doc/html/images/smiley.png
Executable file → Normal file
Before Width: | Height: | Size: 867 B After Width: | Height: | Size: 867 B |
0
doc/html/images/tip.png
Executable file → Normal file
Before Width: | Height: | Size: 640 B After Width: | Height: | Size: 640 B |
0
doc/html/images/up.png
Executable file → Normal file
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 370 B |
0
include/boost/fusion/algorithm/iteration/ext_/for_each_s.hpp
Executable file → Normal file
0
include/boost/fusion/algorithm/query/ext_/find_if_s.hpp
Executable file → Normal file
0
include/boost/fusion/container/ext_/tree.hpp
Executable file → Normal file
0
include/boost/fusion/sequence/intrinsic/ext_/segments.hpp
Executable file → Normal file
0
include/boost/fusion/view/ext_/multiple_view.hpp
Executable file → Normal file
0
include/boost/fusion/view/ext_/segmented_iterator_range.hpp
Executable file → Normal file
@ -14,6 +14,8 @@
|
||||
#include <boost/utility/result_of.hpp>
|
||||
|
||||
#include <boost/type_traits/remove_reference.hpp>
|
||||
#include <boost/type_traits/add_reference.hpp>
|
||||
#include <boost/type_traits/add_const.hpp>
|
||||
|
||||
#include <boost/fusion/support/is_view.hpp>
|
||||
#include <boost/fusion/support/category_of.hpp>
|
||||
@ -34,7 +36,7 @@ namespace boost { namespace fusion
|
||||
struct result<addref(U)> : add_reference<U> {};
|
||||
|
||||
template <typename T>
|
||||
typename boost::result_of<addref(T)>::type
|
||||
typename add_reference<T>::type
|
||||
operator()(T& x) const
|
||||
{
|
||||
return x;
|
||||
@ -52,14 +54,14 @@ namespace boost { namespace fusion
|
||||
{};
|
||||
|
||||
template <typename T>
|
||||
typename boost::result_of<addconstref(T)>::type
|
||||
typename add_reference<typename add_const<T>::type>::type
|
||||
operator()(T& x) const
|
||||
{
|
||||
return x;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
typename boost::result_of<addconstref(T)>::type
|
||||
typename add_reference<typename add_const<T>::type>::type
|
||||
operator()(T const& x) const
|
||||
{
|
||||
return x;
|
||||
|