Skip to content

Commit 0d14067

Browse files
committed
bitset standardize
1 parent 5340b37 commit 0d14067

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed

stl/src/vector_algorithms.cpp

+12-16
Original file line numberDiff line numberDiff line change
@@ -6300,7 +6300,7 @@ void* __stdcall __std_unique_copy_8(const void* _First, const void* const _Last,
63006300
} // extern "C"
63016301

63026302
namespace {
6303-
namespace __std_bitset_to_string {
6303+
namespace _Bitset_to_string {
63046304
#ifdef _M_ARM64EC
63056305
using _Traits_1_avx = void;
63066306
using _Traits_1_sse = void;
@@ -6450,29 +6450,27 @@ namespace {
64506450
}
64516451
}
64526452
}
6453-
} // namespace __std_bitset_to_string
6453+
} // namespace _Bitset_to_string
64546454
} // unnamed namespace
64556455

64566456
extern "C" {
64576457

6458-
__declspec(noalias) void __stdcall __std_bitset_to_string_1(
6458+
__declspec(noalias) void __stdcall _Bitset_to_string_1(
64596459
char* const _Dest, const void* const _Src, const size_t _Size_bits, const char _Elem0, const char _Elem1) noexcept {
6460-
using namespace __std_bitset_to_string;
6460+
using namespace _Bitset_to_string;
64616461
_Dispatch<_Traits_1_avx, _Traits_1_sse>(_Dest, _Src, _Size_bits, _Elem0, _Elem1);
64626462
}
64636463

6464-
__declspec(noalias) void __stdcall __std_bitset_to_string_2(wchar_t* const _Dest, const void* const _Src,
6464+
__declspec(noalias) void __stdcall _Bitset_to_string_2(wchar_t* const _Dest, const void* const _Src,
64656465
const size_t _Size_bits, const wchar_t _Elem0, const wchar_t _Elem1) noexcept {
6466-
using namespace __std_bitset_to_string;
6466+
using namespace _Bitset_to_string;
64676467
_Dispatch<_Traits_2_avx, _Traits_2_sse>(_Dest, _Src, _Size_bits, _Elem0, _Elem1);
64686468
}
64696469

64706470
} // extern "C"
64716471

64726472
namespace {
6473-
6474-
namespace __std_bitset_from_string {
6475-
6473+
namespace _Bitset_from_string {
64766474
#ifdef _M_ARM64EC
64776475
using _Traits_1_avx = void;
64786476
using _Traits_1_sse = void;
@@ -6704,25 +6702,23 @@ namespace {
67046702
return _Fallback(_Dest, _Src, _Size_bytes, _Size_bits, _Size_chars, _Elem0, _Elem1);
67056703
}
67066704
}
6707-
6708-
} // namespace __std_bitset_from_string
6709-
6705+
} // namespace _Bitset_from_string
67106706
} // unnamed namespace
67116707

67126708
extern "C" {
67136709

6714-
__declspec(noalias) bool __stdcall __std_bitset_from_string_1(void* const _Dest, const char* const _Src,
6710+
__declspec(noalias) bool __stdcall _Bitset_from_string_1(void* const _Dest, const char* const _Src,
67156711
const size_t _Size_bytes, const size_t _Size_bits, const size_t _Size_chars, const char _Elem0,
67166712
const char _Elem1) noexcept {
6717-
using namespace __std_bitset_from_string;
6713+
using namespace _Bitset_from_string;
67186714

67196715
return _Dispatch<_Traits_1_avx, _Traits_1_sse>(_Dest, _Src, _Size_bytes, _Size_bits, _Size_chars, _Elem0, _Elem1);
67206716
}
67216717

6722-
__declspec(noalias) bool __stdcall __std_bitset_from_string_2(void* const _Dest, const wchar_t* const _Src,
6718+
__declspec(noalias) bool __stdcall _Bitset_from_string_2(void* const _Dest, const wchar_t* const _Src,
67236719
const size_t _Size_bytes, const size_t _Size_bits, const size_t _Size_chars, const wchar_t _Elem0,
67246720
const wchar_t _Elem1) noexcept {
6725-
using namespace __std_bitset_from_string;
6721+
using namespace _Bitset_from_string;
67266722

67276723
return _Dispatch<_Traits_2_avx, _Traits_2_sse>(_Dest, _Src, _Size_bytes, _Size_bits, _Size_chars, _Elem0, _Elem1);
67286724
}

0 commit comments

Comments
 (0)