aboutsummaryrefslogtreecommitdiff
path: root/support/Requires.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/Requires.h')
-rw-r--r--support/Requires.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/Requires.h b/support/Requires.h
index bc4932adc5..21c98ca766 100644
--- a/support/Requires.h
+++ b/support/Requires.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2020 Arm Limited.
+ * Copyright (c) 2018-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -40,9 +40,9 @@ enum class enabler
} // namespace arm_compute
/** Requirements as template */
-#define REQUIRES_T(...) template <bool Cond = (__VA_ARGS__), typename std::enable_if<Cond, int>::type = 0>
+#define ARM_COMPUTE_REQUIRES_T(...) template <bool Cond = (__VA_ARGS__), typename std::enable_if<Cond, int>::type = 0>
/** Requirements as template argument */
-#define REQUIRES_TA(...) typename = typename std::enable_if<(__VA_ARGS__), arm_compute::utils::requires::detail::enabler>::type
+#define ARM_COMPUTE_REQUIRES_TA(...) typename = typename std::enable_if<(__VA_ARGS__), arm_compute::utils::requires::detail::enabler>::type
// clang-format on
// *INDENT-ON*
} // namespace requires