From 0e8e26666eea283a21759a9b9381ef41fda34891 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 31 Mar 2010 11:09:21 +0000 Subject: [PATCH] Fixes #4052. [SVN r60960] --- include/boost/type_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits.hpp b/include/boost/type_traits.hpp index e6cdb76..ff10050 100644 --- a/include/boost/type_traits.hpp +++ b/include/boost/type_traits.hpp @@ -16,7 +16,7 @@ #include "boost/type_traits/add_reference.hpp" #include "boost/type_traits/add_volatile.hpp" #include "boost/type_traits/alignment_of.hpp" -#ifndef __BORLANDC__ +#if !defined(__BORLANDC__) && !defined(__CUDACC__) #include "boost/type_traits/has_new_operator.hpp" #endif #include "boost/type_traits/has_nothrow_assign.hpp"