Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions clang/lib/Headers/cuda_wrappers/cmath
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
#ifndef __CLANG_CUDA_WRAPPERS_CMATH
#define __CLANG_CUDA_WRAPPERS_CMATH

#if __has_include_next(<cmath>)
#include_next <cmath>
#else
#error "Could not find standard C++ header 'cmath'. Add -v to your compilation command to check the include paths being searched. You may need to install the appropriate standard C++ library package corresponding to the search path."
#endif

#if defined(_LIBCPP_STD_VER)

Expand Down
Loading