[libcxx-commits] [libcxx] 77df8d3 - [NFC][libc++] Replaces tabs by spaces.

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Wed Dec 28 09:11:51 PST 2022


Author: Mark de Wever
Date: 2022-12-28T18:11:43+01:00
New Revision: 77df8d38d297836f18bd18ca9b464d2f3d76721c

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

LOG: [NFC][libc++] Replaces tabs by spaces.

Added: 
    

Modified: 
    libcxx/include/mutex

Removed: 
    


################################################################################
diff  --git a/libcxx/include/mutex b/libcxx/include/mutex
index 9b726d59b105..d93fba8f801c 100644
--- a/libcxx/include/mutex
+++ b/libcxx/include/mutex
@@ -681,7 +681,7 @@ call_once(once_flag& __flag, _Callable& __func)
     if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
     {
         __call_once_param<_Callable> __p(__func);
-		std::__call_once(__flag.__state_, &__p, &__call_once_proxy<_Callable>);
+        std::__call_once(__flag.__state_, &__p, &__call_once_proxy<_Callable>);
     }
 }
 
@@ -693,7 +693,7 @@ call_once(once_flag& __flag, const _Callable& __func)
     if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
     {
         __call_once_param<const _Callable> __p(__func);
-		std::__call_once(__flag.__state_, &__p, &__call_once_proxy<const _Callable>);
+        std::__call_once(__flag.__state_, &__p, &__call_once_proxy<const _Callable>);
     }
 }
 


        


More information about the libcxx-commits mailing list