diff options
author | Siva Chandra Reddy <sivachandra@google.com> | 2022-06-25 04:47:21 +0000 |
---|---|---|
committer | Siva Chandra Reddy <sivachandra@google.com> | 2022-06-25 04:47:21 +0000 |
commit | bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5 (patch) | |
tree | d13a6e2ee4c8b6b5900930fb2b2cead12d431e6d | |
parent | 66a6c1073a204de5729e0ec82508697aeb08bcf1 (diff) | |
download | llvm-bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5.zip llvm-bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5.tar.gz llvm-bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5.tar.bz2 |
[libc][Obvious] Fix incorrect nested namespace name.
-rw-r--r-- | libc/src/__support/CPP/UInt128.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/src/__support/CPP/UInt128.h b/libc/src/__support/CPP/UInt128.h index e09271a..6cb4f9c 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 |