@@ -547,21 +547,21 @@ u32 CSE_ALifeObject::ef_detector_type() const
547
547
return (u32 (-1 ));
548
548
}
549
549
550
- bool CSE_ALifeObject::used_ai_locations () const noexcept
550
+ bool CSE_ALifeObject::used_ai_locations () const /* noexcept */
551
551
{ return !!m_flags.is (flUsedAI_Locations); }
552
- bool CSE_ALifeObject::can_switch_online () const noexcept
552
+ bool CSE_ALifeObject::can_switch_online () const /* noexcept */
553
553
{ return match_configuration () && !!m_flags.is (flSwitchOnline); }
554
- bool CSE_ALifeObject::can_switch_offline () const noexcept
554
+ bool CSE_ALifeObject::can_switch_offline () const /* noexcept */
555
555
{ return !match_configuration () || !!m_flags.is (flSwitchOffline); }
556
- bool CSE_ALifeObject::can_save () const noexcept
556
+ bool CSE_ALifeObject::can_save () const /* noexcept */
557
557
{ return !!m_flags.is (flCanSave); }
558
- bool CSE_ALifeObject::interactive () const noexcept
558
+ bool CSE_ALifeObject::interactive () const /* noexcept */
559
559
{ return !!m_flags.is (flInteractive) && !!m_flags.is (flVisibleForAI) && !!m_flags.is (flUsefulForAI); }
560
560
561
561
void CSE_ALifeObject::use_ai_locations (bool value) { m_flags.set (flUsedAI_Locations, BOOL (value)); }
562
- void CSE_ALifeObject::can_switch_online (bool value) noexcept { m_flags.set (flSwitchOnline, BOOL (value)); }
563
- void CSE_ALifeObject::can_switch_offline (bool value) noexcept { m_flags.set (flSwitchOffline, BOOL (value)); }
564
- void CSE_ALifeObject::interactive (bool value) noexcept { m_flags.set (flInteractive, BOOL (value)); }
562
+ void CSE_ALifeObject::can_switch_online (bool value) /* noexcept */ { m_flags.set (flSwitchOnline, BOOL (value)); }
563
+ void CSE_ALifeObject::can_switch_offline (bool value) /* noexcept */ { m_flags.set (flSwitchOffline, BOOL (value)); }
564
+ void CSE_ALifeObject::interactive (bool value) /* noexcept */ { m_flags.set (flInteractive, BOOL (value)); }
565
565
// //////////////////////////////////////////////////////////////////////////
566
566
// CSE_ALifeGroupAbstract
567
567
// //////////////////////////////////////////////////////////////////////////
@@ -703,8 +703,8 @@ void CSE_ALifePHSkeletonObject::UPDATE_Read(NET_Packet& tNetPacket)
703
703
inherited2::UPDATE_Read (tNetPacket);
704
704
};
705
705
706
- bool CSE_ALifePHSkeletonObject::can_save () const noexcept { return CSE_PHSkeleton::need_save (); }
707
- bool CSE_ALifePHSkeletonObject::used_ai_locations () const noexcept { return false ; }
706
+ bool CSE_ALifePHSkeletonObject::can_save () const /* noexcept */ { return CSE_PHSkeleton::need_save (); }
707
+ bool CSE_ALifePHSkeletonObject::used_ai_locations () const /* noexcept */ { return false ; }
708
708
#ifndef XRGAME_EXPORTS
709
709
void CSE_ALifePHSkeletonObject::FillProps (LPCSTR pref, PropItemVec& items)
710
710
{
@@ -726,8 +726,8 @@ CSE_ALifeSpaceRestrictor::CSE_ALifeSpaceRestrictor(LPCSTR caSection) : CSE_ALife
726
726
}
727
727
728
728
CSE_ALifeSpaceRestrictor::~CSE_ALifeSpaceRestrictor () {}
729
- bool CSE_ALifeSpaceRestrictor::can_switch_offline () const noexcept { return false ; }
730
- bool CSE_ALifeSpaceRestrictor::used_ai_locations () const noexcept { return false ; }
729
+ bool CSE_ALifeSpaceRestrictor::can_switch_offline () const /* noexcept */ { return false ; }
730
+ bool CSE_ALifeSpaceRestrictor::used_ai_locations () const /* noexcept */ { return false ; }
731
731
IServerEntityShape* CSE_ALifeSpaceRestrictor::shape () { return (this ); }
732
732
void CSE_ALifeSpaceRestrictor::STATE_Read (NET_Packet& tNetPacket, u16 size)
733
733
{
@@ -1148,8 +1148,8 @@ void CSE_ALifeObjectPhysic::FillProps(LPCSTR pref, PropItemVec& values)
1148
1148
}
1149
1149
#endif // #ifndef XRGAME_EXPORTS
1150
1150
1151
- bool CSE_ALifeObjectPhysic::used_ai_locations () const noexcept { return false ; }
1152
- bool CSE_ALifeObjectPhysic::can_save () const noexcept { return CSE_PHSkeleton::need_save (); }
1151
+ bool CSE_ALifeObjectPhysic::used_ai_locations () const /* noexcept */ { return false ; }
1152
+ bool CSE_ALifeObjectPhysic::can_save () const /* noexcept */ { return CSE_PHSkeleton::need_save (); }
1153
1153
// //////////////////////////////////////////////////////////////////////////
1154
1154
// CSE_ALifeObjectHangingLamp
1155
1155
// //////////////////////////////////////////////////////////////////////////
@@ -1418,7 +1418,7 @@ CDUInterface* du, IServerEntityLEOwner* owner, bool bSelected, const Fmatrix& pa
1418
1418
}
1419
1419
#endif // #ifndef XRGAME_EXPORTS
1420
1420
1421
- bool CSE_ALifeObjectHangingLamp::used_ai_locations () const noexcept { return false ; }
1421
+ bool CSE_ALifeObjectHangingLamp::used_ai_locations () const /* noexcept */ { return false ; }
1422
1422
bool CSE_ALifeObjectHangingLamp::validate ()
1423
1423
{
1424
1424
if (flags.test (flR1) || flags.test (flR2))
@@ -1428,7 +1428,7 @@ bool CSE_ALifeObjectHangingLamp::validate()
1428
1428
return (false );
1429
1429
}
1430
1430
1431
- bool CSE_ALifeObjectHangingLamp::match_configuration () const noexcept
1431
+ bool CSE_ALifeObjectHangingLamp::match_configuration () const /* noexcept */
1432
1432
{
1433
1433
R_ASSERT3 (flags.test (flR1) || flags.test (flR2), " no renderer type set for hanging-lamp " , name_replace ());
1434
1434
#ifdef XRGAME_EXPORTS
@@ -1458,7 +1458,7 @@ void CSE_ALifeObjectProjector::UPDATE_Write(NET_Packet& tNetPacket) { inherited:
1458
1458
void CSE_ALifeObjectProjector::FillProps (LPCSTR pref, PropItemVec& values) { inherited::FillProps (pref, values); }
1459
1459
#endif // #ifndef XRGAME_EXPORTS
1460
1460
1461
- bool CSE_ALifeObjectProjector::used_ai_locations () const noexcept { return false ; }
1461
+ bool CSE_ALifeObjectProjector::used_ai_locations () const /* noexcept */ { return false ; }
1462
1462
// //////////////////////////////////////////////////////////////////////////
1463
1463
// CSE_ALifeSchedulable
1464
1464
// //////////////////////////////////////////////////////////////////////////
@@ -1562,7 +1562,7 @@ void CSE_ALifeHelicopter::load(NET_Packet& tNetPacket)
1562
1562
inherited1::load (tNetPacket);
1563
1563
inherited3::load (tNetPacket);
1564
1564
}
1565
- bool CSE_ALifeHelicopter::can_save () const noexcept { return CSE_PHSkeleton::need_save (); }
1565
+ bool CSE_ALifeHelicopter::can_save () const /* noexcept */ { return CSE_PHSkeleton::need_save (); }
1566
1566
#ifndef XRGAME_EXPORTS
1567
1567
void CSE_ALifeHelicopter::FillProps (LPCSTR pref, PropItemVec& values)
1568
1568
{
@@ -1574,7 +1574,7 @@ void CSE_ALifeHelicopter::FillProps(LPCSTR pref, PropItemVec& values)
1574
1574
}
1575
1575
#endif // #ifndef XRGAME_EXPORTS
1576
1576
1577
- bool CSE_ALifeHelicopter::used_ai_locations () const noexcept { return false ; }
1577
+ bool CSE_ALifeHelicopter::used_ai_locations () const /* noexcept */ { return false ; }
1578
1578
// //////////////////////////////////////////////////////////////////////////
1579
1579
// CSE_ALifeCar
1580
1580
// //////////////////////////////////////////////////////////////////////////
@@ -1621,8 +1621,8 @@ void CSE_ALifeCar::UPDATE_Write(NET_Packet& tNetPacket)
1621
1621
inherited2::UPDATE_Write (tNetPacket);
1622
1622
}
1623
1623
1624
- bool CSE_ALifeCar::used_ai_locations () const noexcept { return false ; }
1625
- bool CSE_ALifeCar::can_save () const noexcept { return CSE_PHSkeleton::need_save (); }
1624
+ bool CSE_ALifeCar::used_ai_locations () const /* noexcept */ { return false ; }
1625
+ bool CSE_ALifeCar::can_save () const /* noexcept */ { return CSE_PHSkeleton::need_save (); }
1626
1626
void CSE_ALifeCar::load (NET_Packet& tNetPacket)
1627
1627
{
1628
1628
inherited1::load (tNetPacket);
@@ -1737,8 +1737,8 @@ void CSE_ALifeObjectBreakable::FillProps(LPCSTR pref, PropItemVec& values)
1737
1737
}
1738
1738
#endif // #ifndef XRGAME_EXPORTS
1739
1739
1740
- bool CSE_ALifeObjectBreakable::used_ai_locations () const noexcept { return false ; }
1741
- bool CSE_ALifeObjectBreakable::can_switch_offline () const noexcept { return false ; }
1740
+ bool CSE_ALifeObjectBreakable::used_ai_locations () const /* noexcept */ { return false ; }
1741
+ bool CSE_ALifeObjectBreakable::can_switch_offline () const /* noexcept */ { return false ; }
1742
1742
// //////////////////////////////////////////////////////////////////////////
1743
1743
// CSE_ALifeObjectClimable
1744
1744
// //////////////////////////////////////////////////////////////////////////
@@ -1799,8 +1799,8 @@ void CSE_ALifeObjectClimable::set_additional_info(void* info)
1799
1799
}
1800
1800
#endif // #ifndef XRGAME_EXPORTS
1801
1801
1802
- bool CSE_ALifeObjectClimable::used_ai_locations () const noexcept { return false ; }
1803
- bool CSE_ALifeObjectClimable::can_switch_offline () const noexcept { return false ; }
1802
+ bool CSE_ALifeObjectClimable::used_ai_locations () const /* noexcept */ { return false ; }
1803
+ bool CSE_ALifeObjectClimable::can_switch_offline () const /* noexcept */ { return false ; }
1804
1804
// //////////////////////////////////////////////////////////////////////////
1805
1805
// CSE_ALifeMountedWeapon
1806
1806
// //////////////////////////////////////////////////////////////////////////
0 commit comments