修改pods
This commit is contained in:
2
Pods/leveldb-library/README.md
generated
2
Pods/leveldb-library/README.md
generated
@@ -263,5 +263,5 @@ the CocoaPods option `--skip-import-validation`.
|
||||
firebase-ios-sdk repo indicates there are no issues with the staged pod,
|
||||
the pod can be published with:
|
||||
```console
|
||||
pod trunk push leveldb-library.podspec --skip-import-validation
|
||||
pod trunk push ~/.cocoapods/repos/staging/leveldb-library/{version}/leveldb-library.podspec.json --skip-import-validation
|
||||
```
|
||||
|
||||
4
Pods/leveldb-library/util/env_posix.cc
generated
4
Pods/leveldb-library/util/env_posix.cc
generated
@@ -837,7 +837,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");
|
||||
@@ -854,7 +854,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)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user