Skip to content

Commit

Permalink
Solving clang formatter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
razvanapetroaie committed May 28, 2024
1 parent 4432a71 commit f53d917
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,15 @@ struct TypePrinter {
static constexpr const char* name();
};

#define TYPE_PRINTER(type) \
template <> \
struct TypePrinter<type> { \
static constexpr bool hasName() { return true; } \
static constexpr const char* name() { return #type; } \
#define TYPE_PRINTER(type) \
template <> \
struct TypePrinter<type> { \
static constexpr bool hasName() { \
return true; \
} \
static constexpr const char* name() { \
return #type; \
} \
};

TYPE_PRINTER(bool)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
//

#include "execution_graph_tests/duplicate_inputs_outputs_names.hpp"

#include "common_test_utils/test_constants.hpp"

using namespace ExecutionGraphTests;

namespace {

INSTANTIATE_TEST_SUITE_P(smoke_duplicateInputsOutputsNames, ExecGraphDuplicateInputsOutputsNames,
INSTANTIATE_TEST_SUITE_P(smoke_duplicateInputsOutputsNames,
ExecGraphDuplicateInputsOutputsNames,
::testing::Values(ov::test::utils::DEVICE_TEMPLATE),
ExecGraphDuplicateInputsOutputsNames::getTestCaseName);

} // namespace

0 comments on commit f53d917

Please sign in to comment.