From: Justin Lebar Date: Fri, 1 Apr 2016 00:25:42 +0000 (+0000) Subject: [CUDA] Fix typo in __clang_cuda_runtime_wrapper.h. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e99eeaa87a88ba00689bba3c825fd3924ecd5e1;p=clang [CUDA] Fix typo in __clang_cuda_runtime_wrapper.h. We're #including the wrong file! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@265083 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/__clang_cuda_runtime_wrapper.h b/lib/Headers/__clang_cuda_runtime_wrapper.h index b9278d5cfb..97d8870c33 100644 --- a/lib/Headers/__clang_cuda_runtime_wrapper.h +++ b/lib/Headers/__clang_cuda_runtime_wrapper.h @@ -43,7 +43,7 @@ #if defined(__CUDA__) && defined(__clang__) // Include some forward declares that must come before cmath. -#include <__clang_cuda_runtime_wrapper.h> +#include <__clang_cuda_math_forward_declares.h> // Include some standard headers to avoid CUDA headers including them // while some required macros (like __THROW) are in a weird state.