Reminder: Boost Master branch will close for release tomorrow (12/5)

Marshall Clow via Boost <boost@lists.boost.org> writes:
Calendar at https://www.boost.org/development
https://www.boost.org/development/tests/master/developer/locale.html https://github.com/boostorg/locale/pull/15 is still not in "master" yet. Despite the PR's title it'd fix "link" failures even for GCC e.g., ### BEFORE ### $ g++8 libs/locale/test/test_config.cpp -lboost_locale /tmp//cc1DwEva.o: In function `main': test_config.cpp:(.text+0x7cd): undefined reference to `boost::locale::generator::generator()' test_config.cpp:(.text+0x88c): undefined reference to `boost::locale::generator::~generator()' test_config.cpp:(.text+0x9b0): undefined reference to `boost::locale::generator::~generator()' /tmp//cc1DwEva.o: In function `boost::locale::generator::operator()(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const': test_config.cpp:(.text._ZNK5boost6locale9generatorclERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE[_ZNK5boost6locale9generatorclERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]+0x27): undefined reference to `boost::locale::generator::generate(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const' /tmp//cc1DwEva.o: In function `boost::locale::info const& std::use_facet<boost::locale::info>(std::locale const&)': test_config.cpp:(.text._ZSt9use_facetIN5boost6locale4infoEERKT_RKSt6locale[_ZSt9use_facetIN5boost6locale4infoEERKT_RKSt6locale]+0xd): undefined reference to `boost::locale::info::id' collect2: error: ld returned 1 exit status ### AFTER ### $ g++8 libs/locale/test/test_config.cpp -lboost_locale $

I have one small pending change for type_traits which fixes this issue: https://github.com/boostorg/type_traits/issues/97 IMO The change is low risk: https://github.com/boostorg/type_traits/commit/19bc3525a3193b026bca5f3afb25c... Is there still time to merge? Thanks, John. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

On Wed, Dec 5, 2018 at 5:40 AM John Maddock via Boost <boost@lists.boost.org> wrote:
I have one small pending change for type_traits which fixes this issue: https://github.com/boostorg/type_traits/issues/97
IMO The change is low risk:
https://github.com/boostorg/type_traits/commit/19bc3525a3193b026bca5f3afb25c...
Is there still time to merge?
If the tests are passing, then go ahead. -- Marshall
participants (3)
-
Jan Beich
-
John Maddock
-
Marshall Clow