这样写就可以
template <typename EnvType>
class SingletonEnv {
public:
....
typedef EnvType tt;
Env* env() {
static typename SingletonEnv::tt env_storage_;
return reinterpret_cast<Env*>(&env_storage_);
}
};
【 在 z16166 的大作中提到: 】
: 我弄了个github repo,看来可以把这个repo提个issue给MS
--
修改:haha103 FROM 182.150.115.*
FROM 182.150.115.*