Compare commits

..

No commits in common. "fdd153b63e24f43b8ac6be7d23876628e5635f79" and "4bedc32b63dc272bd47bdf9002d544d93c056483" have entirely different histories.

4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
project( project(
ssp ssp
VERSION 1.6.2 VERSION 1.6.1
DESCRIPTION "csv parser" DESCRIPTION "csv parser"
HOMEPAGE_URL "https://github.com/red0124/ssp" HOMEPAGE_URL "https://github.com/red0124/ssp"
LANGUAGES CXX LANGUAGES CXX

View File

@ -155,7 +155,7 @@ public:
return; return;
} }
if (header_.empty() && !eof()) { if (header_.empty()) {
split_header_data(); split_header_data();
} }

View File

@ -6,7 +6,7 @@ project(
'cpp_std=c++17', 'cpp_std=c++17',
'buildtype=debugoptimized', 'buildtype=debugoptimized',
'wrap_mode=forcefallback'], 'wrap_mode=forcefallback'],
version: '1.6.2', version: '1.6.1',
meson_version:'>=0.54.0') meson_version:'>=0.54.0')
fast_float_dep = dependency('fast_float') fast_float_dep = dependency('fast_float')

View File

@ -2281,7 +2281,7 @@ public:
return; return;
} }
if (header_.empty() && !eof()) { if (header_.empty()) {
split_header_data(); split_header_data();
} }