File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1818#include < map>
1919#include < mutex>
2020#include < optional>
21+ #include < string>
2122#else // OS_WIN
2223#include < dirent.h>
2324#include < unistd.h>
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ) {
Original file line number Diff line number Diff 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
3535source_set (" version" ) {
You can’t perform that action at this time.
0 commit comments