Branch data Line data Source code
1 : : /* 2 : : * ----------------- BEGIN LICENSE BLOCK --------------------------------- 3 : : * 4 : : * Copyright (C) 2018-2020 Intel Corporation 5 : : * 6 : : * SPDX-License-Identifier: LGPL-2.1-only 7 : : * 8 : : * ----------------- END LICENSE BLOCK ----------------------------------- 9 : : */ 10 : : 11 : : /** 12 : : * Generated file 13 : : * @file 14 : : * 15 : : * Generator Version : 11.0.0-1997 16 : : */ 17 : : 18 : : #pragma once 19 : : 20 : : #include <cmath> 21 : : #include <limits> 22 : : #include "ad/rss/state/LateralResponse.hpp" 23 : : #include "spdlog/fmt/ostr.h" 24 : : #include "spdlog/spdlog.h" 25 : : 26 : : /*! 27 : : * \brief check if the given LateralResponse is within valid input range 28 : : * 29 : : * \param[in] input the LateralResponse as an input value 30 : : * \param[in] logErrors enables error logging 31 : : * 32 : : * \returns \c true if LateralResponse is considered to be within the specified input range 33 : : * 34 : : * \note the specified input range is defined by the valid enum literals. 35 : : */ 36 : 11186 : inline bool withinValidInputRange(::ad::rss::state::LateralResponse const &input, bool const logErrors = true) 37 : : { 38 : 11186 : bool inValidInputRange 39 [ + + + + ]: 11186 : = (input == ::ad::rss::state::LateralResponse::None) || (input == ::ad::rss::state::LateralResponse::BrakeMin); 40 [ + + + - ]: 11186 : if (!inValidInputRange && logErrors) 41 : : { 42 [ + - ]: 11 : spdlog::error("withinValidInputRange(::ad::rss::state::LateralResponse)>> {}, raw value: {} ", 43 : : input, 44 : 22 : static_cast<int32_t>(input)); // LCOV_EXCL_BR_LINE 45 : : } 46 : 11186 : return inValidInputRange; 47 : : }