https://issues.apache.org/ooo/show_bug.cgi?id=121585

--- Comment #9 from Pedro Giffuni <[email protected]> ---
OK, I learned something else from boost:
http://www.boost.org/doc/libs/1_48_0/doc/html/boost_tr1/usage.html#boost_tr1.usage.native

Ww either add

#include <boost/tr1/unordered_set.hpp>

or (more portable)

#include <unordered_set>

but if we do the last one we have to include boost-install-path/boost/tr1/tr1
to the compiler include path.

I think the second option is better because it makes it easier to change the
implementation if we later decide to drop boost and use a native
implementation. It also sort of fits the way STLport is being used now.

So my script has to be changed to use the second form. This would also make it
easier to use other boost components.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.

Reply via email to