Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-gresyk committed Dec 20, 2023
1 parent 63ba5fe commit b29fcfb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 34 deletions.
18 changes: 0 additions & 18 deletions development/hfsm2/detail/shared/utility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,24 +60,6 @@ template <
>
using Conditional = typename ConditionalT<B, TT, TF>::Type;

//------------------------------------------------------------------------------

template <typename, typename>
struct IsSameT final {
static constexpr bool Value = false;
};

template <typename T>
struct IsSameT<T, T> final {
static constexpr bool Value = true;
};

template <
typename T0,
typename T1
>
static constexpr bool IsSame = IsSameT<T0, T1>::Value;

////////////////////////////////////////////////////////////////////////////////

template <typename T>
Expand Down
16 changes: 0 additions & 16 deletions include/hfsm2/machine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -430,22 +430,6 @@ template <
>
using Conditional = typename ConditionalT<B, TT, TF>::Type;

template <typename, typename>
struct IsSameT final {
static constexpr bool Value = false;
};

template <typename T>
struct IsSameT<T, T> final {
static constexpr bool Value = true;
};

template <
typename T0,
typename T1
>
static constexpr bool IsSame = IsSameT<T0, T1>::Value;

template <typename T>
struct RemoveConstT final {
using Type = T;
Expand Down

0 comments on commit b29fcfb

Please sign in to comment.