shadow : cont gcc

ggml-ci
This commit is contained in:
Georgi Gerganov 2025-01-12 16:09:49 +02:00
parent f65e3d324d
commit 10eb87409e
No known key found for this signature in database
GPG key ID: 449E073F9DC10735
12 changed files with 509 additions and 511 deletions

File diff suppressed because it is too large Load diff

View file

@ -579,8 +579,8 @@ private:
seq.back().second = false;
} else {
std::string literal;
auto is_non_literal = [&](char c) {
return NON_LITERAL_SET.find(c) != NON_LITERAL_SET.end();
auto is_non_literal = [&](char ch) {
return NON_LITERAL_SET.find(ch) != NON_LITERAL_SET.end();
};
while (i < length) {
if (sub_pattern[i] == '\\' && i < length - 1) {

View file

@ -255,8 +255,8 @@ public:
thrd = std::thread([this]() {
while (true) {
{
std::unique_lock<std::mutex> lock(mtx);
cv.wait(lock, [this]() { return head != tail; });
std::unique_lock<std::mutex> lock_thrd(mtx);
cv.wait(lock_thrd, [this]() { return head != tail; });
cur = entries[head];