Sfoglia il codice sorgente

Update env_posix.cc

xry
Shawn Zhong 2 anni fa
parent
commit
7a2f64ed50
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      util/env_posix.cc

+ 2
- 2
util/env_posix.cc Vedi File

@ -870,7 +870,7 @@ class SingletonEnv {
public:
SingletonEnv() {
#if !defined(NDEBUG)
env_initialized_.store(true, std::memory_order::memory_order_relaxed);
env_initialized_.store(true, std::memory_order_relaxed);
#endif // !defined(NDEBUG)
static_assert(sizeof(env_storage_) >= sizeof(EnvType),
"env_storage_ will not fit the Env");
@ -887,7 +887,7 @@ class SingletonEnv {
static void AssertEnvNotInitialized() {
#if !defined(NDEBUG)
assert(!env_initialized_.load(std::memory_order::memory_order_relaxed));
assert(!env_initialized_.load(std::memory_order_relaxed));
#endif // !defined(NDEBUG)
}

Caricamento…
Annulla
Salva