[libc-commits] [libc] bcdd9fb - [libc][Obvious] Fix incorrect nested namespace name.

Siva Chandra Reddy via libc-commits libc-commits at lists.llvm.org
Fri Jun 24 21:48:42 PDT 2022


Author: Siva Chandra Reddy
Date: 2022-06-25T04:47:21Z
New Revision: bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5

URL: https://github.com/llvm/llvm-project/commit/bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5
DIFF: https://github.com/llvm/llvm-project/commit/bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5.diff

LOG: [libc][Obvious] Fix incorrect nested namespace name.

Added: 
    

Modified: 
    libc/src/__support/CPP/UInt128.h

Removed: 
    


################################################################################
diff  --git a/libc/src/__support/CPP/UInt128.h b/libc/src/__support/CPP/UInt128.h
index e09271a415b6f..6cb4f9c61f838 100644
--- a/libc/src/__support/CPP/UInt128.h
+++ b/libc/src/__support/CPP/UInt128.h
@@ -12,7 +12,7 @@
 #include "UInt.h"
 
 #if !defined(__SIZEOF_INT128__)
-using UInt128 = __llvm_libc::internal::UInt<128>;
+using UInt128 = __llvm_libc::cpp::UInt<128>;
 #else
 using UInt128 = __uint128_t;
 #endif


        


More information about the libc-commits mailing list