
Piyo wrote:
Bjørn Roald wrote:
Piyo wrote:
I am open to any form of solution whether it be macro-based or bcp
If you intent to test the bcp approach, my code is a good way to start.
[snip]
Oh and my coworker also brought up this issue. Is that handled by bcp??
------------------------------------------------------------------------ Also, the issue of cpp guards needs to be raised also, like in aligned_storage.hpp:
#ifndef BOOST_ALIGNED_STORAGE_HPP #define BOOST_ALIGNED_STORAGE_HPP
becomes: #ifndef BOOST_1_33_1_ALIGNED_STORAGE_HPP #define BOOST_1_33_1_ALIGNED_STORAGE_HPP or whatever other upercase string prefix is derived from your target namespace. So yes, it is handled.
You would want to be able to include multiple versions of boosts in the same compilation unit.
yes. -- Bjørn