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

This commit is contained in:
Siva Chandra Reddy 2022-06-25 04:47:21 +00:00
parent 66a6c1073a
commit bcdd9fbf08
1 changed files with 1 additions and 1 deletions

View File

@ -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