Skip to content

Commit b306b22

Browse files
committed
Format
1 parent 8a715a3 commit b306b22

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

libcxx/include/__functional/function.h

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -518,13 +518,13 @@ struct __policy {
518518

519519
_LIBCPP_HIDE_FROM_ABI static const __policy* __create_empty() {
520520
static constexpr __policy __policy = {
521-
nullptr,
522-
nullptr,
523-
true,
521+
nullptr,
522+
nullptr,
523+
true,
524524
# if _LIBCPP_HAS_RTTI
525-
&typeid(void)
525+
&typeid(void)
526526
# else
527-
nullptr
527+
nullptr
528528
# endif
529529
};
530530
return &__policy;
@@ -545,13 +545,13 @@ struct __policy {
545545
template <typename _Fun>
546546
_LIBCPP_HIDE_FROM_ABI static const __policy* __choose_policy(/* is_small = */ false_type) {
547547
static constexpr __policy __policy = {
548-
&__large_clone<_Fun>,
549-
&__large_destroy<_Fun>,
550-
false,
548+
&__large_clone<_Fun>,
549+
&__large_destroy<_Fun>,
550+
false,
551551
# if _LIBCPP_HAS_RTTI
552-
&typeid(typename _Fun::_Target)
552+
&typeid(typename _Fun::_Target)
553553
# else
554-
nullptr
554+
nullptr
555555
# endif
556556
};
557557
return &__policy;
@@ -560,13 +560,13 @@ struct __policy {
560560
template <typename _Fun>
561561
_LIBCPP_HIDE_FROM_ABI static const __policy* __choose_policy(/* is_small = */ true_type) {
562562
static constexpr __policy __policy = {
563-
nullptr,
564-
nullptr,
565-
false,
563+
nullptr,
564+
nullptr,
565+
false,
566566
# if _LIBCPP_HAS_RTTI
567-
&typeid(typename _Fun::_Target)
567+
&typeid(typename _Fun::_Target)
568568
# else
569-
nullptr
569+
nullptr
570570
# endif
571571
};
572572
return &__policy;

libcxx/include/regex

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -842,20 +842,20 @@ namespace regex_constants {
842842
// syntax_option_type
843843

844844
enum syntax_option_type {
845-
icase = 1 << 0,
846-
nosubs = 1 << 1,
847-
optimize = 1 << 2,
848-
collate = 1 << 3,
845+
icase = 1 << 0,
846+
nosubs = 1 << 1,
847+
optimize = 1 << 2,
848+
collate = 1 << 3,
849849
# ifdef _LIBCPP_ABI_REGEX_CONSTANTS_NONZERO
850850
ECMAScript = 1 << 9,
851851
# else
852852
ECMAScript = 0,
853853
# endif
854-
basic = 1 << 4,
855-
extended = 1 << 5,
856-
awk = 1 << 6,
857-
grep = 1 << 7,
858-
egrep = 1 << 8,
854+
basic = 1 << 4,
855+
extended = 1 << 5,
856+
awk = 1 << 6,
857+
grep = 1 << 7,
858+
egrep = 1 << 8,
859859
// 1 << 9 may be used by ECMAScript
860860
multiline = 1 << 10
861861
};
@@ -5809,8 +5809,8 @@ template <class _BidirT>
58095809
using match_results _LIBCPP_AVAILABILITY_PMR =
58105810
std::match_results<_BidirT, polymorphic_allocator<std::sub_match<_BidirT>>>;
58115811

5812-
using cmatch _LIBCPP_AVAILABILITY_PMR = match_results<const char*>;
5813-
using smatch _LIBCPP_AVAILABILITY_PMR = match_results<std::pmr::string::const_iterator>;
5812+
using cmatch _LIBCPP_AVAILABILITY_PMR = match_results<const char*>;
5813+
using smatch _LIBCPP_AVAILABILITY_PMR = match_results<std::pmr::string::const_iterator>;
58145814

58155815
# if _LIBCPP_HAS_WIDE_CHARACTERS
58165816
using wcmatch _LIBCPP_AVAILABILITY_PMR = match_results<const wchar_t*>;

0 commit comments

Comments
 (0)