From fb3e55fdba30531bed90c5635e2d2aada9615281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dietrich=20Kr=C3=B6nke?= Date: Fri, 16 Sep 2022 17:21:37 +0200 Subject: [PATCH] iox-#1640 Clang format files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dietrich Krönke --- .../include/iceoryx_posh/internal/gateway/channel.inl | 8 ++++---- .../include/iceoryx_posh/popo/enum_trigger_type.hpp | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/iceoryx_posh/include/iceoryx_posh/internal/gateway/channel.inl b/iceoryx_posh/include/iceoryx_posh/internal/gateway/channel.inl index c689719fda..e00ae0a089 100644 --- a/iceoryx_posh/include/iceoryx_posh/internal/gateway/channel.inl +++ b/iceoryx_posh/include/iceoryx_posh/internal/gateway/channel.inl @@ -31,11 +31,11 @@ using ExternalTerminalPool = cxx::ObjectPool -IceoryxTerminalPool - Channel::s_iceoryxTerminals = IceoryxTerminalPool(); +IceoryxTerminalPool Channel::s_iceoryxTerminals = + IceoryxTerminalPool(); template -ExternalTerminalPool - Channel::s_externalTerminals = ExternalTerminalPool(); +ExternalTerminalPool Channel::s_externalTerminals = + ExternalTerminalPool(); template inline constexpr Channel::Channel( diff --git a/iceoryx_posh/include/iceoryx_posh/popo/enum_trigger_type.hpp b/iceoryx_posh/include/iceoryx_posh/popo/enum_trigger_type.hpp index 400bcbfa0d..538827e880 100644 --- a/iceoryx_posh/include/iceoryx_posh/popo/enum_trigger_type.hpp +++ b/iceoryx_posh/include/iceoryx_posh/popo/enum_trigger_type.hpp @@ -33,12 +33,12 @@ using EventEnumIdentifier = int64_t; /// @brief contains true when T is an event based enum, otherwise false template constexpr bool IS_EVENT_ENUM = - std::is_enum::value&& std::is_same, EventEnumIdentifier>::value; + std::is_enum::value && std::is_same, EventEnumIdentifier>::value; /// @brief contains true when T is a state based enum, otherwise false template constexpr bool IS_STATE_ENUM = - std::is_enum::value&& std::is_same, StateEnumIdentifier>::value; + std::is_enum::value && std::is_same, StateEnumIdentifier>::value; } // namespace popo } // namespace iox