Changes between Initial Version and Version 2 of Ticket #7189
- Timestamp:
- Feb 16, 2017, 10:50:18 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7189
- Property Cc added
-
Ticket #7189 – Description
initial v2 2 2 The following does not compile because it cannot be resolved whether a call to boost::range::fill_n or std::fill_n is correct 3 3 4 4 {{{ 5 5 #include <boost/array.hpp> 6 6 #include <boost/gil/image_view.hpp> … … 19 19 } 20 20 21 21 }}} 22 22 23 23 Error: 24 24 25 {{{ 25 26 [100%] Building CXX object CMakeFiles/test_misc.dir/test_misc.cpp.o 26 27 In file included from /usr/include/boost/gil/image.hpp:29:0, … … 34 35 /usr/include/boost/range/algorithm/fill_n.hpp:41:28: note: const ForwardRange& boost::range::fill_n(const ForwardRange&, Size, const Value&) [with ForwardRange = boost::array<float, 2ul>*, Size = long int, Value = boost::array<float, 2ul>] 35 36 make[3]: *** [CMakeFiles/test_misc.dir/test_misc.cpp.o] Error 1 36 37 }}}