Skip to content

Commit f0f2a50

Browse files
committed
Squashed 'libs/EXTERNAL/libtatum/' changes from 06d8ad3b1..7fc65f57e
7fc65f57e Remove extra semicolons 8a53805b5 Add gcc-8 build test git-subtree-dir: libs/EXTERNAL/libtatum git-subtree-split: 7fc65f57e1a5f6720be696f00e1549f46ad473b1
1 parent 55e8457 commit f0f2a50

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ matrix:
1818
addons: { apt: { packages: ["cmake", "g++-5", "libtbb-dev"], sources: ["ubuntu-toolchain-r-test"] } }
1919

2020
#Simple testing for other compilers
21+
- env: TESTS="basic" TATUM_EXECUTION_ENGINE=auto MATRIX_EVAL="CC=gcc-8 CXX=g++-8"
22+
addons: { apt: { packages: ["cmake", "g++-8", "libtbb-dev"], sources: ["ubuntu-toolchain-r-test"] } }
23+
2124
- env: TESTS="basic" TATUM_EXECUTION_ENGINE=auto MATRIX_EVAL="CC=gcc-7 CXX=g++-7"
2225
addons: { apt: { packages: ["cmake", "g++-7", "libtbb-dev"], sources: ["ubuntu-toolchain-r-test"] } }
2326

libtatum/tatum/analyzers/TimingAnalyzer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace tatum {
2323
*/
2424
class TimingAnalyzer {
2525
public:
26-
virtual ~TimingAnalyzer() {};
26+
virtual ~TimingAnalyzer() {}
2727

2828
///Perform timing analysis to update timing information (i.e. arrival & required times)
2929
void update_timing() { update_timing_impl(); }

libtatum/tatum/graph_visitors/GraphVisitor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace tatum {
77

88
class GraphVisitor {
99
public:
10-
virtual ~GraphVisitor() {};
10+
virtual ~GraphVisitor() {}
1111
virtual void do_reset_node(const NodeId node_id) = 0;
1212
virtual void do_reset_edge(const EdgeId edge_id) = 0;
1313

0 commit comments

Comments
 (0)