[libc-commits] [libc] [libc] Fix installed 'math.h' header paths (PR #83199)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Tue Feb 27 15:28:53 PST 2024


================
@@ -9,7 +9,7 @@
 #ifndef __LLVM_LIBC_TYPES_FLOAT128_H__
 #define __LLVM_LIBC_TYPES_FLOAT128_H__
 
-#include <include/llvm-libc-macros/float-macros.h> // LDBL_MANT_DIG
+#include <llvm-libc-macros/float-macros.h> // LDBL_MANT_DIG
----------------
nickdesaulniers wrote:

Check my grep command.  `libc/include/llvm-libc-types/float128.h` is the ONLY place where `<>` is used to include float-macros.h. Every other include uses `""`.  Consistency is good.

https://github.com/llvm/llvm-project/pull/83199


More information about the libc-commits mailing list