
3 Apr
2007
3 Apr
'07
12:09 p.m.
Ideally I'd like my code to work with both 1.33 and 1.34. Any hints
on how to do this elegantly?
Add your own layer of indirection:
namespace my_namespace { template< class PtrMap > typename PtrMap::key_type ptr_map_key( const PtrMap& ) { #ifdef BOOST_1_34 ..
Thank you -- will do.