@@ -338,8 +338,7 @@ namespace MachO {
338338 return hasFlag (FlagEnum::ProtectionVersion1);
339339 }
340340
341- [[nodiscard]]
342- constexpr bool isReadOnlyAfterFixup () const noexcept {
341+ [[nodiscard]] constexpr bool isReadOnlyAfterFixup () const noexcept {
343342 return hasFlag (FlagEnum::ReadOnlyAfterFixup);
344343 }
345344
@@ -541,21 +540,18 @@ namespace MachO {
541540
542541 using Base::Base;
543542
544- [[nodiscard]]
545- constexpr bool isAllInstructions () const noexcept {
543+ [[nodiscard]] constexpr bool isAllInstructions () const noexcept {
546544 return hasValueForMask (MaskKind::IsAllInstructions);
547545 }
548546
549- [[nodiscard]]
550- constexpr bool noRanlibTableOfContents () const noexcept {
547+ [[nodiscard]] constexpr bool noRanlibTableOfContents () const noexcept {
551548 const auto NoRanlibTableOfContents =
552549 hasValueForMask (MaskKind::NoRanlibTableOfContents);
553550
554551 return NoRanlibTableOfContents;
555552 }
556553
557- [[nodiscard]]
558- constexpr bool shouldStripStaticSymbols () const noexcept {
554+ [[nodiscard]] constexpr bool shouldStripStaticSymbols () const noexcept {
559555 return hasValueForMask (MaskKind::StripStaticSymbols);
560556 }
561557
@@ -567,27 +563,23 @@ namespace MachO {
567563 return hasValueForMask (MaskKind::LiveSupport);
568564 }
569565
570- [[nodiscard]]
571- constexpr bool hasSelfModifyingCode () const noexcept {
566+ [[nodiscard]] constexpr bool hasSelfModifyingCode () const noexcept {
572567 return hasValueForMask (MaskKind::SelfModifyingCode);
573568 }
574569
575570 [[nodiscard]] constexpr bool isDebugSection () const noexcept {
576571 return hasValueForMask (MaskKind::IsDebugSection);
577572 }
578573
579- [[nodiscard]]
580- constexpr bool hasSomeInstructions () const noexcept {
574+ [[nodiscard]] constexpr bool hasSomeInstructions () const noexcept {
581575 return hasValueForMask (MaskKind::HasSomeInstructions);
582576 }
583577
584- [[nodiscard]]
585- constexpr bool hasExternalRelocEntries () const noexcept {
578+ [[nodiscard]] constexpr bool hasExternalRelocEntries () const noexcept {
586579 return hasValueForMask (MaskKind::HasExternalRelocEntries);
587580 }
588581
589- [[nodiscard]]
590- constexpr bool hasLocalRelocEntries () const noexcept {
582+ [[nodiscard]] constexpr bool hasLocalRelocEntries () const noexcept {
591583 return hasValueForMask (MaskKind::HasLocalRelocEntries);
592584 }
593585
@@ -670,8 +662,7 @@ namespace MachO {
670662
671663 using Base::Base;
672664
673- [[nodiscard]]
674- constexpr Attributes getAttributes () const noexcept {
665+ [[nodiscard]] constexpr Attributes getAttributes () const noexcept {
675666 return Attributes (getValueForMask (MaskType::Attributes));
676667 }
677668
0 commit comments