Skip to content

Commit 65dae06

Browse files
committed
Fix #142 & update single header csv.hpp
1 parent d55f20b commit 65dae06

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

include/internal/csv_writer.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace csv {
6161
size_t decimal = (size_t)(((double)std::abs(value) - (double)integral) * 100000);
6262

6363
result += ".";
64-
result += (decimal == 0) ? "0" : to_string(integral);
64+
result += (decimal == 0) ? "0" : to_string(decimal);
6565

6666
return result;
6767
}

single_include/csv.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6556,7 +6556,7 @@ namespace csv {
65566556
size_t decimal = (size_t)(((double)std::abs(value) - (double)integral) * 100000);
65576557

65586558
result += ".";
6559-
result += (decimal == 0) ? "0" : to_string(integral);
6559+
result += (decimal == 0) ? "0" : to_string(decimal);
65606560

65616561
return result;
65626562
}
@@ -7307,7 +7307,7 @@ namespace csv {
73077307
* \snippet tests/test_read_csv.cpp CSVField Example
73087308
*
73097309
*/
7310-
CSV_INLINE CSVReader::CSVReader(csv::string_view filename, CSVFormat format) {
7310+
CSV_INLINE CSVReader::CSVReader(csv::string_view filename, CSVFormat format) : _format(format) {
73117311
auto head = internals::get_csv_head(filename);
73127312
using Parser = internals::MmapParser;
73137313

single_include_test/csv.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6556,7 +6556,7 @@ namespace csv {
65566556
size_t decimal = (size_t)(((double)std::abs(value) - (double)integral) * 100000);
65576557

65586558
result += ".";
6559-
result += (decimal == 0) ? "0" : to_string(integral);
6559+
result += (decimal == 0) ? "0" : to_string(decimal);
65606560

65616561
return result;
65626562
}
@@ -7307,7 +7307,7 @@ namespace csv {
73077307
* \snippet tests/test_read_csv.cpp CSVField Example
73087308
*
73097309
*/
7310-
CSV_INLINE CSVReader::CSVReader(csv::string_view filename, CSVFormat format) {
7310+
CSV_INLINE CSVReader::CSVReader(csv::string_view filename, CSVFormat format) : _format(format) {
73117311
auto head = internals::get_csv_head(filename);
73127312
using Parser = internals::MmapParser;
73137313

tests/test_write_csv.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ TEST_CASE("CSV Tuple", "[test_csv_tuple]") {
9898
csv_writer << std::make_tuple("One", 2, "Three", 4.0, time)
9999
<< std::make_tuple("One", (short)2, "Three", 4.0f, time)
100100
<< std::make_tuple(-1, -2.0)
101-
<< std::make_tuple(20.2, -20.2)
101+
<< std::make_tuple(20.2, -20.3)
102102
<< std::make_tuple(0.0, 0.0f, 0);
103103

104104
correct_output << "One,2,Three,4.0,5:30" << std::endl
105105
<< "One,2,Three,4.0,5:30" << std::endl
106106
<< "-1,-2.0" << std::endl
107-
<< "20.20,-20.20" << std::endl
107+
<< "20.19999,-20.30000" << std::endl
108108
<< "0.0,0.0,0" << std::endl;
109109

110110
REQUIRE(output.str() == correct_output.str());

0 commit comments

Comments
 (0)