id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 12286,PMR flat_map from Boost Container does not compile,Dmitry Varlamov ,Ion Gaztañaga,"Hello, PMR flat_map from Boost Container does not compile with GCC 6.1.0. The code: {{{ #!div style=""font-size: 80%"" Code highlighting: {{{#!cpp #include #include using namespace boost::container::pmr; int main(int argc, char *argv[]) { static const size_t s = 4096; char buffer[s]; monotonic_buffer_resource r(buffer, s); flat_map m(&r); m.emplace(1, 2); return 0; } }}} }}} Compile with: g++ -std=c++14 -I./../../../Boost/boost_1_61_0/ -L./ -lboost_container ./main.cpp The error is in the attached file errors.log ",Bugs,closed,To Be Determined,container,Boost 1.61.0,Showstopper,fixed,container pmr flat_map,