Ticket #8524: 8524.patch
File 8524.patch, 1.0 KB (added by , 9 years ago) |
---|
-
libs/serialization/src/basic_serializer_map.cpp
45 45 // attempt to insert serializer into it's map 46 46 const std::pair<map_type::iterator, bool> result = 47 47 m_map.insert(bs); 48 (void)result; // Silence warning 48 49 // the following is commented out - rather than being just 49 50 // deleted as a reminder not to try this. 50 51 -
libs/serialization/src/basic_iarchive.cpp
456 456 int i = cid; 457 457 cobject_id_vector[i].bpis_ptr = bpis_ptr; 458 458 BOOST_ASSERT(new_cid == cid); 459 (void)new_cid; // Avoid warning when NDEBUG is on 459 460 } 460 461 int i = cid; 461 462 cobject_id & co = cobject_id_vector[i];