Skip to content

Commit b5c15a8

Browse files
committed
lint
1 parent 8d8d867 commit b5c15a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/encoding_binding.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -322,10 +322,10 @@ void BindingData::DecodeWindows1252(const FunctionCallbackInfo<Value>& args) {
322322
// Windows-1252 specific mapping for bytes 128-159
323323
// These differ from Latin-1/ISO-8859-1
324324
static const uint16_t windows1252_mapping[32] = {
325-
0x20AC, 0x0081, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021, // 80-87
326-
0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x008D, 0x017D, 0x008F, // 88-8F
327-
0x0090, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014, // 90-97
328-
0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x009D, 0x017E, 0x0178 // 98-9F
325+
0x20AC, 0x0081, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021, // 80-87
326+
0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x008D, 0x017D, 0x008F, // 88-8F
327+
0x0090, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014, // 90-97
328+
0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x009D, 0x017E, 0x0178 // 98-9F
329329
};
330330

331331
std::string result;

0 commit comments

Comments
 (0)