[libc-commits] [libc] [llvm] [libc][NFC] Fix missing LIBC_INLINE +	style (PR #73659)
    Guillaume Chatelet via libc-commits 
    libc-commits at lists.llvm.org
       
    Tue Nov 28 08:15:00 PST 2023
    
    
  
================
@@ -15,10 +15,10 @@ namespace LIBC_NAMESPACE {
 LLVM_LIBC_FUNCTION(void *, memmem,
                    (const void *haystack, size_t haystack_len,
                     const void *needle, size_t needle_len)) {
-  constexpr auto comp = [](unsigned char l, unsigned char r) -> int {
+  constexpr auto COMP = [](unsigned char l, unsigned char r) -> int {
----------------
gchatelet wrote:
Yes, although it could be done as a separate PR.
https://github.com/llvm/llvm-project/pull/73659
    
    
More information about the libc-commits
mailing list