| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[flags] explicitly capture-default for kFlagNames
Should fix the following error in Node.js builds:
../../deps/v8/src/flags/flags.cc: In lambda function:
../../deps/v8/src/flags/flags.cc:324:38: error: 'kFlagNames' is not captured
324 | return FlagHelpers::FlagNamesCmp(kFlagNames[i], kFlagNames[j]) < 0;
| ^~~~~~~~~~
../../deps/v8/src/flags/flags.cc:323:46: note: the lambda has no capture-default
323 | std::sort(indices.begin(), indices.end(), [](int i, int j) {
| ^
../../deps/v8/src/flags/flags.cc:309:25: note: 'constexpr const char* const kFlagNames [942]' declared here
309 | constexpr const char* kFlagNames[] = {
| ^~~~~~~~~~
../../deps/v8/src/flags/flags.cc:324:53: error: 'kFlagNames' is not captured
324 | return FlagHelpers::FlagNamesCmp(kFlagNames[i], kFlagNames[j]) < 0;
| ^~~~~~~~~~
../../deps/v8/src/flags/flags.cc:323:46: note: the lambda has no capture-default
323 | std::sort(indices.begin(), indices.end(), [](int i, int j) {
| ^
../../deps/v8/src/flags/flags.cc:309:25: note: 'constexpr const char* const kFlagNames [942]' declared here
309 | constexpr const char* kFlagNames[] = {
| ^~~~~~~~~~
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |