mutex_map[key] = PTHREAD_MUTEX_INITIALIZER;
mutex_map 属于以下类型:
static std::map<std::string, pthread_mutex_t> mutex_map;
在全局范围内的同一文件中
我收到以下关于纯 C++ 的警告
warning: extended initializer lists only available with -std=c++0x or -std=gnu++0x
我不能完全理解这个警告以及如何解决这个问题