Fix formatting.

This commit is contained in:
Daniel Patterson 2021-01-27 23:10:14 -08:00
parent cd8d07d854
commit f4b2efc2f3
No known key found for this signature in database
GPG Key ID: 19C12BE1725A028B

View File

@ -1212,8 +1212,7 @@ argumentsToTableParameter(const Nan::FunctionCallbackInfo<v8::Value> &args,
size_t source_value = Nan::To<unsigned>(source).FromJust(); size_t source_value = Nan::To<unsigned>(source).FromJust();
if (source_value >= params->coordinates.size()) if (source_value >= params->coordinates.size())
{ {
Nan::ThrowError( Nan::ThrowError("Source indices must be less than the number of coordinates");
"Source indices must be less than the number of coordinates");
return table_parameters_ptr(); return table_parameters_ptr();
} }