From c5b2f04e6411c824b305529037853894783d17a5 Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Thu, 2 Jun 2011 16:40:30 -0400 Subject: [PATCH] extras/csv: Set sensible defaults options for CSVParser --- extras/CSVParser.ec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/CSVParser.ec b/extras/CSVParser.ec index bd05d8a..af3f05c 100644 --- a/extras/CSVParser.ec +++ b/extras/CSVParser.ec @@ -36,7 +36,7 @@ public struct CSVParserState public class CSVParser : public FileHandler { public: - CSVParserParameters options; + CSVParserParameters options { ',', '\"', 0, false }; CSVParserState info; void PrintMessage(typed_object object, ...) -- 1.8.3.1