Skip to content

Commit

Permalink
Remove C++20 from the current CMake Build
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Aug 17, 2024
1 parent abcf3a6 commit 8d8350d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
codecov:
require_ci_to_pass: yes
require_ci_to_pass: true

coverage:
precision: 2
Expand All @@ -17,7 +17,7 @@ parsers:
comment:
layout: "reach,diff,flags,tree"
behavior: default
require_changes: no
require_changes: false

ignore:
- "third_party/catch.hpp"
Expand All @@ -26,3 +26,5 @@ ignore:
- "src/visualization/graph_visual/graph_visualization.h"
- "src/visualization/list_visual/list_visualization.h"
- "src/visualization/tree_visual/tree_visualization.h"
- "src/extra/*.h"
- "src/extra/*.cc"
4 changes: 2 additions & 2 deletions tests/extra/bubble.cc → src/extra/tests/bubble.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "../../third_party/catch.hpp"
#include "../../src/extra/containers/bubble.h"
#include "../../../third_party/catch.hpp"
#include "../containers/bubble.h"


TEST_CASE("Testing insertion for bubble class") {
Expand Down
4 changes: 2 additions & 2 deletions tests/extra/table.cc → src/extra/tests/table.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "../../third_party/catch.hpp"
#include "../../src/extra/containers/table.h"
#include "../../../third_party/catch.hpp"
#include "../containers/table.h"
#include <string>

TEST_CASE("Testing push_back function for table class") {
Expand Down

0 comments on commit 8d8350d

Please sign in to comment.