Skip to content

Commit a4ee494

Browse files
authored
Merge pull request #248 from jcarpent/devel
Add Iros on ROS CI
2 parents 5a213ab + d310f6e commit a4ee494

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/ci-linux-ros.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88
env:
99
- {name: "Noetic / Debug", ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: OFF}
1010
- {name: "Noetic / Release", ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: OFF}
11+
- {name: "Iron / Debug", ROS_DISTRO: iron, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: OFF}
12+
- {name: "Iron / Release", ROS_DISTRO: iron, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: OFF}
13+
- {name: "Iron / Debug / Vectorization", ROS_DISTRO: iron, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
14+
- {name: "Iron / Release / Vectorization", ROS_DISTRO: iron, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
1115
- {name: "Humble / Debug / Vectorization", ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
1216
- {name: "Humble / Release / Vectorization", ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
1317
- {name: "Humble / Pre-Release", ROS_DISTRO: humble, PRERELEASE: true}

include/proxsuite/linalg/veg/type_traits/constructible.hpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,7 @@
55
#include "proxsuite/linalg/veg/internal/prologue.hpp"
66

77
#include <new>
8-
9-
#if !VEG_HAS_BUILTIN(__has_trivial_destructor) || \
10-
!VEG_HAS_BUILTIN(__is_trivially_constructible) || \
11-
!VEG_HAS_BUILTIN(__is_constructible) || \
12-
!VEG_HAS_BUILTIN(__is_nothrow_constructible) || \
13-
!VEG_HAS_BUILTIN(__is_trivially_copyable) || \
14-
!VEG_HAS_BUILTIN(__is_trivial) || !VEG_HAS_BUILTIN(__is_final) || \
15-
!VEG_HAS_BUILTIN(__is_empty)
168
#include <type_traits>
17-
#endif
189

1910
namespace proxsuite {
2011
namespace linalg {

0 commit comments

Comments
 (0)