csvpp

csvpp Commit Details


Date:2013-10-12 20:44:00 (11 years 2 months ago)
Author:Natalie Adams
Branch:default
Commit:1b7e886a1b5d
Parents: 0d0a2e46c7a5
Message:Fixing issue #1 as reported by damienlmoore

Changes:
Minclude/csvpp.h (1 diff)
Msrc/csvpp.cpp (1 diff)

File differences

include/csvpp.h
88
99
1010
11
11
1212
1313
1414
#include <istream>
#define VERSION "2.0"
#define VERSION "2.1"
namespace csvpp {
src/csvpp.cpp
4848
4949
5050
51
52
53
54
55
56
5157
5258
5359
stringstream buffer2;
int currentheader = 0;
getline(is, buffer);
// Patch by damienlmoore - https://code.google.com/p/csvpp/issues/detail?id=1
if(!is.good() || is.eof())
{
return is;
}
buffer = trim_copy(buffer);
char c;
bool startquote = false;

Archive Download the corresponding diff file

Branches

Tags

Page rendered in 0.40210s using 15 queries.