Skip to content

Commit 5dd6a14

Browse files
committed
[Testing] CQ-CQ-700040-59414-xqwdb
1 parent a42e1da commit 5dd6a14

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

base/include/fml/unique_fd.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <map>
1919
#include <mutex>
2020
#include <optional>
21+
#include <string>
2122
#else // OS_WIN
2223
#include <dirent.h>
2324
#include <unistd.h>

base/include/linked_hash_map.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ class LinkedHashMap {
463463
*this = other;
464464
} else {
465465
other.for_each(
466-
[=](const Key& k, const T& v) { this->insert_or_assign(k, v); });
466+
[this](const Key& k, const T& v) { this->insert_or_assign(k, v); });
467467
}
468468
}
469469

clay/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ config("config") {
1818

1919
include_dirs = [
2020
"..",
21-
"$root_gen_dir/lynx",
21+
"$root_gen_dir",
2222
]
2323

2424
if (enable_skity) {

clay/version/BUILD.gn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ action("version_inc") {
1616

1717
args = [
1818
"--output",
19-
rebase_path("$target_gen_dir/version.inc"),
19+
rebase_path("$root_gen_dir/clay/version/version.inc"),
2020
"--content",
2121
string_join("\n",
2222
[
@@ -29,7 +29,7 @@ action("version_inc") {
2929
]),
3030
]
3131

32-
outputs = [ "$target_gen_dir/version.inc" ]
32+
outputs = [ "$root_gen_dir/clay/version/version.inc" ]
3333
}
3434

3535
source_set("version") {

0 commit comments

Comments
 (0)