Skip to content

Commit

Permalink
graph: utils: surround macro argument in parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
atkassen committed Feb 15, 2025
1 parent 88c6295 commit 5dd47cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graph/utils/utils.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2020-2023 Intel Corporation
* Copyright 2020-2025 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -53,7 +53,7 @@ using namespace dnnl::impl::utils;
#ifndef NDEBUG
#define DEBUG_PRINT_ERROR(message) \
do { \
std::cout << message << std::endl; \
std::cout << (message) << std::endl; \
} while (0)
#else
#define DEBUG_PRINT_ERROR(message)
Expand Down

0 comments on commit 5dd47cc

Please sign in to comment.