BIND 10 master, updated. 0c0f4c9b1f3c0b9cf3063f9e64a4c9798c0a353a [master] Removed unused primary_separator_ member from CSVFile class.

BIND 10 source code commits bind10-changes at lists.isc.org
Fri Apr 4 12:22:47 UTC 2014


The branch, master has been updated
       via  0c0f4c9b1f3c0b9cf3063f9e64a4c9798c0a353a (commit)
      from  bc97e4255c17c34adc9d7e7f87201133a6c32df1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0c0f4c9b1f3c0b9cf3063f9e64a4c9798c0a353a
Author: Marcin Siodelski <marcin at isc.org>
Date:   Fri Apr 4 14:09:19 2014 +0200

    [master] Removed unused primary_separator_ member from CSVFile class.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/util/csv_file.cc |    3 +--
 src/lib/util/csv_file.h  |    3 ---
 2 files changed, 1 insertion(+), 5 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/util/csv_file.cc b/src/lib/util/csv_file.cc
index 968ee92..95a95c2 100644
--- a/src/lib/util/csv_file.cc
+++ b/src/lib/util/csv_file.cc
@@ -80,8 +80,7 @@ CSVRow::checkIndex(const size_t at) const {
 }
 
 CSVFile::CSVFile(const std::string& filename)
-    : primary_separator_(','), filename_(filename), fs_(), cols_(0),
-      read_msg_() {
+    : filename_(filename), fs_(), cols_(0), read_msg_() {
 }
 
 CSVFile::~CSVFile() {
diff --git a/src/lib/util/csv_file.h b/src/lib/util/csv_file.h
index 12938db..264a993 100644
--- a/src/lib/util/csv_file.h
+++ b/src/lib/util/csv_file.h
@@ -458,9 +458,6 @@ private:
     /// @brief Returns size of the CSV file.
     std::ifstream::pos_type size() const;
 
-    /// @brief Separator used by CSV file.
-    char primary_separator_;
-
     /// @brief CSV file name.
     std::string filename_;
 



More information about the bind10-changes mailing list