From bcdd9fbf0876fa61bb50ff5dcdfdfda4c4ad5ca5 Mon Sep 17 00:00:00 2001 From: Siva Chandra Reddy Date: Sat, 25 Jun 2022 04:47:21 +0000 Subject: [PATCH] [libc][Obvious] Fix incorrect nested namespace name. --- libc/src/__support/CPP/UInt128.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/src/__support/CPP/UInt128.h b/libc/src/__support/CPP/UInt128.h index e09271a415b6..6cb4f9c61f83 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