@@ -547,21 +547,21 @@ u32 CSE_ALifeObject::ef_detector_type() const
547547 return (u32 (-1 ));
548548}
549549
550- bool CSE_ALifeObject::used_ai_locations () const noexcept
550+ bool CSE_ALifeObject::used_ai_locations () const /* noexcept */
551551{ return !!m_flags.is (flUsedAI_Locations); }
552- bool CSE_ALifeObject::can_switch_online () const noexcept
552+ bool CSE_ALifeObject::can_switch_online () const /* noexcept */
553553{ 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 */
555555{ return !match_configuration () || !!m_flags.is (flSwitchOffline); }
556- bool CSE_ALifeObject::can_save () const noexcept
556+ bool CSE_ALifeObject::can_save () const /* noexcept */
557557{ return !!m_flags.is (flCanSave); }
558- bool CSE_ALifeObject::interactive () const noexcept
558+ bool CSE_ALifeObject::interactive () const /* noexcept */
559559{ return !!m_flags.is (flInteractive) && !!m_flags.is (flVisibleForAI) && !!m_flags.is (flUsefulForAI); }
560560
561561void 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)); }
565565// //////////////////////////////////////////////////////////////////////////
566566// CSE_ALifeGroupAbstract
567567// //////////////////////////////////////////////////////////////////////////
@@ -703,8 +703,8 @@ void CSE_ALifePHSkeletonObject::UPDATE_Read(NET_Packet& tNetPacket)
703703 inherited2::UPDATE_Read (tNetPacket);
704704};
705705
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 ; }
708708#ifndef XRGAME_EXPORTS
709709void CSE_ALifePHSkeletonObject::FillProps (LPCSTR pref, PropItemVec& items)
710710{
@@ -726,8 +726,8 @@ CSE_ALifeSpaceRestrictor::CSE_ALifeSpaceRestrictor(LPCSTR caSection) : CSE_ALife
726726}
727727
728728CSE_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 ; }
731731IServerEntityShape* CSE_ALifeSpaceRestrictor::shape () { return (this ); }
732732void CSE_ALifeSpaceRestrictor::STATE_Read (NET_Packet& tNetPacket, u16 size)
733733{
@@ -1148,8 +1148,8 @@ void CSE_ALifeObjectPhysic::FillProps(LPCSTR pref, PropItemVec& values)
11481148}
11491149#endif // #ifndef XRGAME_EXPORTS
11501150
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 (); }
11531153// //////////////////////////////////////////////////////////////////////////
11541154// CSE_ALifeObjectHangingLamp
11551155// //////////////////////////////////////////////////////////////////////////
@@ -1418,7 +1418,7 @@ CDUInterface* du, IServerEntityLEOwner* owner, bool bSelected, const Fmatrix& pa
14181418}
14191419#endif // #ifndef XRGAME_EXPORTS
14201420
1421- bool CSE_ALifeObjectHangingLamp::used_ai_locations () const noexcept { return false ; }
1421+ bool CSE_ALifeObjectHangingLamp::used_ai_locations () const /* noexcept */ { return false ; }
14221422bool CSE_ALifeObjectHangingLamp::validate ()
14231423{
14241424 if (flags.test (flR1) || flags.test (flR2))
@@ -1428,7 +1428,7 @@ bool CSE_ALifeObjectHangingLamp::validate()
14281428 return (false );
14291429}
14301430
1431- bool CSE_ALifeObjectHangingLamp::match_configuration () const noexcept
1431+ bool CSE_ALifeObjectHangingLamp::match_configuration () const /* noexcept */
14321432{
14331433 R_ASSERT3 (flags.test (flR1) || flags.test (flR2), " no renderer type set for hanging-lamp " , name_replace ());
14341434#ifdef XRGAME_EXPORTS
@@ -1458,7 +1458,7 @@ void CSE_ALifeObjectProjector::UPDATE_Write(NET_Packet& tNetPacket) { inherited:
14581458void CSE_ALifeObjectProjector::FillProps (LPCSTR pref, PropItemVec& values) { inherited::FillProps (pref, values); }
14591459#endif // #ifndef XRGAME_EXPORTS
14601460
1461- bool CSE_ALifeObjectProjector::used_ai_locations () const noexcept { return false ; }
1461+ bool CSE_ALifeObjectProjector::used_ai_locations () const /* noexcept */ { return false ; }
14621462// //////////////////////////////////////////////////////////////////////////
14631463// CSE_ALifeSchedulable
14641464// //////////////////////////////////////////////////////////////////////////
@@ -1562,7 +1562,7 @@ void CSE_ALifeHelicopter::load(NET_Packet& tNetPacket)
15621562 inherited1::load (tNetPacket);
15631563 inherited3::load (tNetPacket);
15641564}
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 (); }
15661566#ifndef XRGAME_EXPORTS
15671567void CSE_ALifeHelicopter::FillProps (LPCSTR pref, PropItemVec& values)
15681568{
@@ -1574,7 +1574,7 @@ void CSE_ALifeHelicopter::FillProps(LPCSTR pref, PropItemVec& values)
15741574}
15751575#endif // #ifndef XRGAME_EXPORTS
15761576
1577- bool CSE_ALifeHelicopter::used_ai_locations () const noexcept { return false ; }
1577+ bool CSE_ALifeHelicopter::used_ai_locations () const /* noexcept */ { return false ; }
15781578// //////////////////////////////////////////////////////////////////////////
15791579// CSE_ALifeCar
15801580// //////////////////////////////////////////////////////////////////////////
@@ -1621,8 +1621,8 @@ void CSE_ALifeCar::UPDATE_Write(NET_Packet& tNetPacket)
16211621 inherited2::UPDATE_Write (tNetPacket);
16221622}
16231623
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 (); }
16261626void CSE_ALifeCar::load (NET_Packet& tNetPacket)
16271627{
16281628 inherited1::load (tNetPacket);
@@ -1737,8 +1737,8 @@ void CSE_ALifeObjectBreakable::FillProps(LPCSTR pref, PropItemVec& values)
17371737}
17381738#endif // #ifndef XRGAME_EXPORTS
17391739
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 ; }
17421742// //////////////////////////////////////////////////////////////////////////
17431743// CSE_ALifeObjectClimable
17441744// //////////////////////////////////////////////////////////////////////////
@@ -1799,8 +1799,8 @@ void CSE_ALifeObjectClimable::set_additional_info(void* info)
17991799}
18001800#endif // #ifndef XRGAME_EXPORTS
18011801
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 ; }
18041804// //////////////////////////////////////////////////////////////////////////
18051805// CSE_ALifeMountedWeapon
18061806// //////////////////////////////////////////////////////////////////////////
0 commit comments