File tree Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 4444 thread-comments : true
4545 ignore : ' build|cmake_modules|ci'
4646 database : build/compile_commands.json
47+ extra-args : ' -std=c++20 -Wall'
4748 - name : Fail fast?!
4849 if : steps.linter.outputs.checks-failed != 0
4950 run : |
Original file line number Diff line number Diff line change 2020#pragma once
2121
2222#include < memory>
23- #include < string_view>
23+
24+
25+
26+ #include < string_view>
2427
2528namespace iceberg {
2629
27- class Table {
28- public:
29- virtual ~Table () = default ;
30- virtual std::string_view print () const = 0;
31- static std::unique_ptr<Table> create ();
30+ class Table {
31+ public:
32+ virtual ~Table ( ) = default ;
33+
34+ virtual std::string_view print () const = 0;
35+
36+
37+ static std::unique_ptr<Table> create ();
38+
39+ private:
40+ int SOME_ID = 1 ;
3241};
3342
3443} // namespace iceberg
You can’t perform that action at this time.
0 commit comments