• Robert Edmonds's avatar
    Fix namespace errors when compiled with latest protobuf · 582cad8b
    Robert Edmonds authored
    The protobuf project removed "using namespace std" namespace pollution
    from their stubs/common.h header file. This caused build failures for us
    since we relied on their namespace pollution.
    
    This commit updates protobuf-c to convert:
    
     'map' → 'std::map'
     'set' → 'std::set'
     'back_insert_iterator' → 'std::back_insert_iterator'
    582cad8b
c_helpers.cc 18.6 KB