Upgrading from boost 1.38 to 1.39 causes my call to boost::algorithm::split not to compile - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:34:45Z http://stackoverflow.com/feeds/question/901700 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/901700/upgrading-from-boost-1-38-to-1-39-causes-my-call-to-boostalgorithmsplit-not-t 0 Upgrading from boost 1.38 to 1.39 causes my call to boost::algorithm::split not to compile BillyONeal 2009-05-23T15:12:21Z 2009-08-18T08:12:28Z <p>Hello all :)</p> <p>I was using Boost 1.38, and I just upgraded to 1.39. Upgrading broke the following bit of code:</p> <pre><code>std::vector&lt;std::wstring&gt; consoleParser::loadStringsFromFile(const std::wstring &amp;fileName) { std::vector&lt;std::wstring&gt; files; std::wstring fileString(loadFileAsString(fileName)); boost::algorithm::split(files, fileString, boost::is_any_of(L"\r\n'\"")); //Error on this line return files; } </code></pre> <p>Any ideas on what's causing the failure? My compiler helpfully emits the following:</p> <pre><code>c:\boost\boost\utility\addressof.hpp(30) : error C2220: warning treated as error - no 'object' file generated c:\boost\boost\utility\addressof.hpp(56) : see reference to class template instantiation 'boost::detail::addr_impl_ref&lt;T&gt;' being compiled with [ T=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\function\function_template.hpp(600) : see reference to function template instantiation 'T *boost::addressof&lt;FunctionObj&gt;(T &amp;)' being compiled with [ T=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt;, FunctionObj=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\function\function_template.hpp(491) : see reference to function template instantiation 'bool boost::detail::function::basic_vtable2&lt;R,T0,T1&gt;::assign_to&lt;F&gt;(FunctionObj,boost::detail::function::function_buffer &amp;,boost::detail::function::function_obj_tag)' being compiled with [ R=boost::iterator_range&lt;std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;&gt;, T0=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, T1=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, F=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt;, FunctionObj=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\function\function_template.hpp(906) : see reference to function template instantiation 'bool boost::detail::function::basic_vtable2&lt;R,T0,T1&gt;::assign_to&lt;Functor&gt;(F,boost::detail::function::function_buffer &amp;)' being compiled with [ R=boost::iterator_range&lt;std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;&gt;, T0=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, T1=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, Functor=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt;, F=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\function\function_template.hpp(720) : see reference to function template instantiation 'void boost::function2&lt;R,T0,T1&gt;::assign_to&lt;Functor&gt;(Functor)' being compiled with [ R=boost::iterator_range&lt;std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;&gt;, T0=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, T1=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, Functor=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\algorithm\string\detail\find_iterator.hpp(51) : see reference to function template instantiation 'boost::function2&lt;R,T0,T1&gt;::function2&lt;FinderT&gt;(Functor,int)' being compiled with [ R=boost::iterator_range&lt;std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;&gt;, T0=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, T1=std::_String_iterator&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;, FinderT=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt;, Functor=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\algorithm\string\find_iterator.hpp(261) : see reference to function template instantiation 'boost::algorithm::detail::find_iterator_base&lt;IteratorT&gt;::find_iterator_base&lt;FinderT&gt;(FinderT,int)' being compiled with [ IteratorT=input_iterator_type, FinderT=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\algorithm\string\iter_find.hpp(167) : see reference to function template instantiation 'boost::algorithm::split_iterator&lt;IteratorT&gt;::split_iterator&lt;FinderT&gt;(IteratorT,IteratorT,FinderT)' being compiled with [ IteratorT=input_iterator_type, FinderT=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\boost\boost\algorithm\string\split.hpp(149) : see reference to function template instantiation 'SequenceSequenceT &amp;boost::algorithm::iter_split&lt;SequenceSequenceT,RangeT,boost::algorithm::detail::token_finderF&lt;PredicateT&gt;&gt;(SequenceSequenceT &amp;,RangeT &amp;,FinderT)' being compiled with [ SequenceSequenceT=std::vector&lt;std::wstring&gt;, RangeT=std::wstring, PredicateT=boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;, FinderT=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] c:\documents and settings\user\my documents\visual studio 2008\projects\pevfind\pevfind\consoleparser.cpp(1529) : see reference to function template instantiation 'SequenceSequenceT &amp;boost::algorithm::split&lt;std::vector&lt;_Ty&gt;,std::wstring,boost::algorithm::detail::is_any_ofF&lt;CharT&gt;&gt;(SequenceSequenceT &amp;,RangeT &amp;,PredicateT,boost::algorithm::token_compress_mode_type)' being compiled with [ SequenceSequenceT=std::vector&lt;std::wstring&gt;, _Ty=std::wstring, CharT=wchar_t, RangeT=std::wstring, PredicateT=boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt; ] c:\boost\boost\utility\addressof.hpp(30) : warning C4512: 'boost::detail::addr_impl_ref&lt;T&gt;' : assignment operator could not be generated with [ T=boost::algorithm::detail::token_finderF&lt;boost::algorithm::detail::is_any_ofF&lt;wchar_t&gt;&gt; ] </code></pre> http://stackoverflow.com/questions/901700/upgrading-from-boost-1-38-to-1-39-causes-my-call-to-boostalgorithmsplit-not-t/901776#901776 1 Answer by Scott Langham for Upgrading from boost 1.38 to 1.39 causes my call to boost::algorithm::split not to compile Scott Langham 2009-05-23T15:47:41Z 2009-05-23T15:47:41Z <p>If I switch to warning level 4 and set treat warnings as errors mine breaks too. Try changing those settings.</p> http://stackoverflow.com/questions/901700/upgrading-from-boost-1-38-to-1-39-causes-my-call-to-boostalgorithmsplit-not-t/901777#901777 3 Answer by ASk for Upgrading from boost 1.38 to 1.39 causes my call to boost::algorithm::split not to compile ASk 2009-05-23T15:48:26Z 2009-05-23T15:48:26Z <p>Your compile failed because there's a new warning being emitted (<code>boost::detail::addr_impl_ref&lt;T&gt;' : assignment operator could not be generated</code>), and your settings are set to treat warnings as errors. Judging from <a href="http://www.nabble.com/-utility--foreach--1.39.0--warning-C4512-td23446419.html" rel="nofollow">this</a> and <a href="https://svn.boost.org/trac/boost/ticket/2993" rel="nofollow">this</a>, it's indeed an issue with Boost 1.39.0 and VS2008.</p> <p>The latter link provides a patch that fixes the issue. It should be fixed in Boost 1.40.0.</p> <p>The alternative would be to disable the "treat warnings as errors" flag temporarily.</p> http://stackoverflow.com/questions/901700/upgrading-from-boost-1-38-to-1-39-causes-my-call-to-boostalgorithmsplit-not-t/1292479#1292479 0 Answer by Eamon Nerbonne for Upgrading from boost 1.38 to 1.39 causes my call to boost::algorithm::split not to compile Eamon Nerbonne 2009-08-18T08:12:28Z 2009-08-18T08:12:28Z <p>I really don't like "treat warnings as errors" for this kind of reason, but you can just do:</p> <pre><code>#pragma warning (disable:4512) </code></pre> <p>above any #include line for addressof.hpp.</p>