Skip to content

Commit

Permalink
teca_table clang warning cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
burlen committed Nov 29, 2020
1 parent 7baf167 commit 14ec323
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions data/teca_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,11 @@ class teca_table : public teca_dataset

protected:
teca_table();
teca_table(const teca_table &other) = default;
teca_table(teca_table &&other) = default;
teca_table &operator=(const teca_table &other) = default;

teca_table(const teca_table &other) = delete;
teca_table(teca_table &&other) = delete;
teca_table &operator=(const teca_table &other) = delete;

void declare_columns(){}
void append(){}

Expand Down

0 comments on commit 14ec323

Please sign in to comment.