@@ -4238,7 +4238,7 @@ namespace csv {
42384238 class CSVField {
42394239 public:
42404240 /* * Constructs a CSVField from a string_view */
4241- constexpr explicit CSVField (csv::string_view _sv) noexcept : sv(_sv) { };
4241+ constexpr explicit CSVField (csv::string_view _sv) noexcept : sv(_sv) {}
42424242
42434243 operator std::string () const {
42444244 return std::string (" <CSVField> " ) + std::string (this ->sv );
@@ -4453,7 +4453,7 @@ namespace csv {
44534453 }
44544454
44554455 /* * Returns true if field is a floating point value */
4456- CONSTEXPR_14 bool is_float () noexcept { return type () == DataType::CSV_DOUBLE; };
4456+ CONSTEXPR_14 bool is_float () noexcept { return type () == DataType::CSV_DOUBLE; }
44574457
44584458 /* * Return the type of the underlying CSV data */
44594459 CONSTEXPR_14 DataType type () noexcept {
@@ -4746,7 +4746,7 @@ namespace csv {
47464746 template <typename T>
47474747 class ThreadSafeDeque {
47484748 public:
4749- ThreadSafeDeque (size_t notify_size = 100 ) : _notify_size(notify_size) {};
4749+ ThreadSafeDeque (size_t notify_size = 100 ) : _notify_size(notify_size) {}
47504750 ThreadSafeDeque (const ThreadSafeDeque& other) {
47514751 this ->data = other.data ;
47524752 this ->_notify_size = other._notify_size ;
@@ -4923,7 +4923,7 @@ namespace csv {
49234923 IBasicCSVParser () = default ;
49244924 IBasicCSVParser (const CSVFormat&, const ColNamesPtr&);
49254925 IBasicCSVParser (const ParseFlagMap& parse_flags, const WhitespaceMap& ws_flags
4926- ) : _parse_flags(parse_flags), _ws_flags(ws_flags) {};
4926+ ) : _parse_flags(parse_flags), _ws_flags(ws_flags) {}
49274927
49284928 virtual ~IBasicCSVParser () {}
49294929
@@ -5044,15 +5044,15 @@ namespace csv {
50445044 StreamParser (TStream& source,
50455045 const CSVFormat& format,
50465046 const ColNamesPtr& col_names = nullptr
5047- ) : IBasicCSVParser(format, col_names), _source(source) {};
5047+ ) : IBasicCSVParser(format, col_names), _source(source) {}
50485048
50495049 StreamParser (
50505050 TStream& source,
50515051 internals::ParseFlagMap parse_flags,
50525052 internals::WhitespaceMap ws_flags) :
50535053 IBasicCSVParser (parse_flags, ws_flags),
50545054 _source (source)
5055- {};
5055+ {}
50565056
50575057 ~StreamParser () {}
50585058
@@ -5237,7 +5237,7 @@ namespace csv {
52375237 #endif
52385238
52395239 iterator () = default ;
5240- iterator (CSVReader* reader) : daddy(reader) {};
5240+ iterator (CSVReader* reader) : daddy(reader) {}
52415241 iterator (CSVReader*, CSVRow&&);
52425242
52435243 /* * Access the CSVRow held by the iterator */
@@ -5334,7 +5334,7 @@ namespace csv {
53345334 CSV_CONST iterator end () const noexcept ;
53355335
53365336 /* * Returns true if we have reached end of file */
5337- bool eof () const noexcept { return this ->parser ->eof (); };
5337+ bool eof () const noexcept { return this ->parser ->eof (); }
53385338 // /@}
53395339
53405340 /* * @name CSV Metadata */
@@ -6777,7 +6777,7 @@ namespace csv {
67776777 */
67786778
67796779 DelimWriter (OutputStream& _out, bool _quote_minimal = true )
6780- : out(&_out), quote_minimal(_quote_minimal) {};
6780+ : out(&_out), quote_minimal(_quote_minimal) {}
67816781
67826782 /* * Construct a DelimWriter over the file
67836783 *
@@ -6791,7 +6791,7 @@ namespace csv {
67916791 quote_minimal(_quote_minimal) {
67926792 if (!owned_out->is_open ())
67936793 throw std::runtime_error (" Failed to open file for writing: " + filename);
6794- };
6794+ }
67956795
67966796 /* * Destructor will flush remaining data
67976797 *
0 commit comments