gpt4 book ai didi

ios - 此处可能误用逗号运算符

转载 作者:可可西里 更新时间:2023-11-01 03:53:16 26 4
gpt4 key购买 nike

更新到推荐的 pod 设置后,我在 Xcode 中收到警告。警告是

Possible misuse of comma operator here

建议修复

Cast expression to void to silence warning

警告出现在 leveldb-library/db/c.cc 的开始键和限制键处:

void leveldb_compact_range(
leveldb_t* db,
const char* start_key, size_t start_key_len,
const char* limit_key, size_t limit_key_len) {
Slice a, b;
db->rep->CompactRange(
// Pass NULL Slice if corresponding "const char*" is NULL
(start_key ? (a = Slice(start_key, start_key_len), &a) : NULL),
(limit_key ? (b = Slice(limit_key, limit_key_len), &b) : NULL));
}

有没有其他人有同样的情况或知道是什么原因造成的?我正在运行 Cocoapods 1.2.0。

最佳答案

leveldb 现在在 pod 更新 到 leveldb-library CocoaPod 版本 1.20 后构建时没有警告。

关于ios - 此处可能误用逗号运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46895568/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com