From 2ca29edab34c43c3653aac7fb91c882cf11435c0 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Wed, 23 Jan 2019 20:36:23 -0500 Subject: [PATCH] Fixing bad spacing. --- src/stage1_find_marks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stage1_find_marks.cpp b/src/stage1_find_marks.cpp index 4c5dd54ea..ce950df41 100644 --- a/src/stage1_find_marks.cpp +++ b/src/stage1_find_marks.cpp @@ -66,7 +66,7 @@ WARN_UNUSED #ifndef _MSC_VER __builtin_prefetch(buf + idx + 128); #endif - __m256i input_lo = _mm256_loadu_si256((const __m256i *)(buf + idx + 0)); + __m256i input_lo = _mm256_loadu_si256((const __m256i *)(buf + idx + 0)); __m256i input_hi = _mm256_loadu_si256((const __m256i *)(buf + idx + 32)); #ifdef SIMDJSON_UTF8VALIDATE __m256i highbit = _mm256_set1_epi8(0x80);