Skip to content

Commit b292c5d

Browse files
committed
lint
1 parent c11ceba commit b292c5d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/node_modules.cc

+4-2
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,12 @@ const BindingData::PackageConfig* BindingData::GetPackageJSON(
105105
// the string even when we are still within the capacity of the string.
106106
// https://github.com./google/sanitizers/wiki/AddressSanitizerContainerOverflow
107107
// https://github.com./nodejs/node/issues/55584
108-
// The next three lines are a workaround to avoid this false positive.
108+
// The next lines are a workaround to avoid this false positive.
109109
size_t json_length = package_config.raw_json.size();
110110
package_config.raw_json.append(simdjson::SIMDJSON_PADDING, ' ');
111-
simdjson::padded_string_view json_view(package_config.raw_json.data(), json_length, package_config.raw_json.size());
111+
simdjson::padded_string_view json_view(package_config.raw_json.data(),
112+
json_length,
113+
package_config.raw_json.size());
112114
// End of workaround
113115

114116
simdjson::ondemand::document document;

0 commit comments

Comments
 (0)