From b50aeeeb658e787ad3064e6f35da885b2aec1ab4 Mon Sep 17 00:00:00 2001 From: scott snyder <scott.snyder@cern.ch> Date: Mon, 1 Oct 2018 16:24:42 +0200 Subject: [PATCH] CxxUtils: Small fix needed for cudacc tests. Small fix needed for cudacc tests. Former-commit-id: aef8dd63fef1c00210f1ee011e48446d88ca2018 --- Control/CxxUtils/CxxUtils/features.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Control/CxxUtils/CxxUtils/features.h b/Control/CxxUtils/CxxUtils/features.h index c0fc87c00c4..2d8affb47a3 100644 --- a/Control/CxxUtils/CxxUtils/features.h +++ b/Control/CxxUtils/CxxUtils/features.h @@ -15,7 +15,7 @@ /// Do we have function multiversioning? -#if defined(__GNUC__) && !defined(__clang__) && !defined(__ICC) && !defined(__COVERITY__) +#if defined(__GNUC__) && !defined(__clang__) && !defined(__ICC) && !defined(__COVERITY__) && !defined(__CUDACC__) # define HAVE_FUNCTION_MULTIVERSIONING 1 #else # define HAVE_FUNCTION_MULTIVERSIONING 0 -- GitLab