@@ -99,7 +99,7 @@ class CSE_ALifeGraphPoint : public CSE_Abstract
9999
100100 CSE_ALifeGraphPoint (LPCSTR caSection);
101101 virtual ~CSE_ALifeGraphPoint ();
102- virtual bool match_configuration () const noexcept { return false ; }
102+ virtual bool match_configuration () const /* noexcept */ { return false ; }
103103#ifndef XRGAME_EXPORTS
104104 virtual void __stdcall on_render (CDUInterface* du, IServerEntityLEOwner* owner, bool bSelected,
105105 const Fmatrix& parent, int priority, bool strictB2F);
@@ -151,17 +151,17 @@ class CSE_ALifeObject : public CSE_Abstract, public CRandom
151151
152152 CSE_ALifeObject (LPCSTR caSection);
153153 virtual ~CSE_ALifeObject ();
154- virtual bool used_ai_locations () const noexcept ;
155- virtual bool can_save () const noexcept ;
156- virtual bool can_switch_online () const noexcept ;
157- virtual bool can_switch_offline () const noexcept ;
158- virtual bool interactive () const noexcept ;
154+ virtual bool used_ai_locations () const /* noexcept* */ ;
155+ virtual bool can_save () const /* noexcept */ ;
156+ virtual bool can_switch_online () const /* noexcept */ ;
157+ virtual bool can_switch_offline () const /* noexcept */ ;
158+ virtual bool interactive () const /* noexcept */ ;
159159 virtual CSE_ALifeObject* cast_alife_object () { return this ; }
160160 bool move_offline () const ;
161- void can_switch_online (bool value) noexcept ;
162- void can_switch_offline (bool value) noexcept ;
161+ void can_switch_online (bool value) /* noexcept */ ;
162+ void can_switch_offline (bool value) /* noexcept */ ;
163163 void use_ai_locations (bool value);
164- void interactive (bool value) noexcept ;
164+ void interactive (bool value) /* noexcept */ ;
165165 void move_offline (bool value);
166166 bool visible_for_map () const ;
167167 void visible_for_map (bool value);
@@ -174,7 +174,7 @@ class CSE_ALifeObject : public CSE_Abstract, public CRandom
174174 virtual void spawn_supplies ();
175175 CALifeSimulator& alife () const ;
176176 virtual Fvector draw_level_position () const ;
177- virtual bool keep_saved_data_anyway () const noexcept ;
177+ virtual bool keep_saved_data_anyway () const /* noexcept */ ;
178178#endif
179179 virtual void UPDATE_Read (NET_Packet& P);
180180 virtual void UPDATE_Write (NET_Packet& P);
@@ -341,8 +341,8 @@ class CSE_ALifePHSkeletonObject : public CSE_ALifeDynamicObjectVisual, public CS
341341public:
342342 CSE_ALifePHSkeletonObject (LPCSTR caSection);
343343 virtual ~CSE_ALifePHSkeletonObject ();
344- virtual bool can_save () const noexcept ;
345- virtual bool used_ai_locations () const noexcept ;
344+ virtual bool can_save () const /* noexcept */ ;
345+ virtual bool used_ai_locations () const /* noexcept */ ;
346346 virtual void load (NET_Packet& tNetPacket);
347347 virtual CSE_Abstract* cast_abstract () { return this ; }
348348public:
@@ -364,8 +364,8 @@ class CSE_ALifeSpaceRestrictor : public CSE_ALifeDynamicObject, public CSE_Shape
364364 CSE_ALifeSpaceRestrictor (LPCSTR caSection);
365365 virtual ~CSE_ALifeSpaceRestrictor ();
366366 virtual IServerEntityShape* __stdcall shape ();
367- virtual bool can_switch_offline () const noexcept ;
368- virtual bool used_ai_locations () const noexcept ;
367+ virtual bool can_switch_offline () const /* noexcept */ ;
368+ virtual bool used_ai_locations () const /* noexcept */ ;
369369 virtual void UPDATE_Read (NET_Packet& P);
370370 virtual void UPDATE_Write (NET_Packet& P);
371371 virtual void STATE_Read (NET_Packet& P, u16 size);
@@ -411,7 +411,7 @@ class CSE_ALifeSmartZone : public CSE_ALifeSpaceRestrictor, public CSE_ALifeSche
411411 virtual void update ();
412412 virtual float detect_probability ();
413413 virtual void smart_touch (CSE_ALifeMonsterAbstract* monster);
414- virtual bool used_ai_locations () const noexcept { return true ; };
414+ virtual bool used_ai_locations () const /* noexcept */ { return true ; };
415415 virtual CSE_ALifeSmartZone* cast_smart_zone () { return this ; };
416416#ifdef XRGAME_EXPORTS
417417 virtual bool bfActive ();
@@ -444,8 +444,8 @@ class CSE_ALifeObjectPhysic : public CSE_ALifeDynamicObjectVisual, public CSE_PH
444444 shared_str fixed_bones;
445445 CSE_ALifeObjectPhysic (LPCSTR caSection);
446446 virtual ~CSE_ALifeObjectPhysic ();
447- virtual bool used_ai_locations () const noexcept ;
448- virtual bool can_save () const noexcept ;
447+ virtual bool used_ai_locations () const /* noexcept */ ;
448+ virtual bool can_save () const /* noexcept */ ;
449449 virtual void load (NET_Packet& tNetPacket);
450450 virtual CSE_Abstract* cast_abstract () { return this ; }
451451 // virtual void load (IReader& r){inherited::load(r);}
@@ -543,8 +543,8 @@ class CSE_ALifeObjectHangingLamp : public CSE_ALifeDynamicObjectVisual, public C
543543 CSE_ALifeObjectHangingLamp (LPCSTR caSection);
544544 virtual ~CSE_ALifeObjectHangingLamp ();
545545 virtual void load (NET_Packet& tNetPacket);
546- virtual bool used_ai_locations () const noexcept ;
547- virtual bool match_configuration () const noexcept ;
546+ virtual bool used_ai_locations () const /* noexcept */ ;
547+ virtual bool match_configuration () const /* noexcept */ ;
548548 virtual bool __stdcall validate ();
549549#ifndef XRGAME_EXPORTS
550550 virtual void __stdcall on_render (CDUInterface* du, IServerEntityLEOwner* owner, bool bSelected,
@@ -565,7 +565,7 @@ class CSE_ALifeObjectProjector : public CSE_ALifeDynamicObjectVisual
565565public:
566566 CSE_ALifeObjectProjector (LPCSTR caSection);
567567 virtual ~CSE_ALifeObjectProjector ();
568- virtual bool used_ai_locations () const noexcept ;
568+ virtual bool used_ai_locations () const /* noexcept */ ;
569569 virtual void UPDATE_Read (NET_Packet& P);
570570 virtual void UPDATE_Write (NET_Packet& P);
571571 virtual void STATE_Read (NET_Packet& P, u16 size);
@@ -584,8 +584,8 @@ class CSE_ALifeHelicopter : public CSE_ALifeDynamicObjectVisual, public CSE_Moti
584584 CSE_ALifeHelicopter (LPCSTR caSection);
585585 virtual ~CSE_ALifeHelicopter ();
586586 virtual void load (NET_Packet& tNetPacket);
587- virtual bool can_save () const noexcept ;
588- virtual bool used_ai_locations () const noexcept ;
587+ virtual bool can_save () const /* noexcept */ ;
588+ virtual bool used_ai_locations () const /* noexcept */ ;
589589 virtual CSE_Motion* __stdcall motion ();
590590 virtual CSE_Abstract* cast_abstract () { return this ; }
591591 virtual void UPDATE_Read (NET_Packet& P);
@@ -619,9 +619,9 @@ class CSE_ALifeCar : public CSE_ALifeDynamicObjectVisual, public CSE_PHSkeleton
619619 float health;
620620 CSE_ALifeCar (LPCSTR caSection);
621621 virtual ~CSE_ALifeCar ();
622- virtual bool used_ai_locations () const noexcept ;
622+ virtual bool used_ai_locations () const /* noexcept */ ;
623623 virtual void load (NET_Packet& tNetPacket);
624- virtual bool can_save () const noexcept ;
624+ virtual bool can_save () const /* noexcept */ ;
625625 virtual CSE_Abstract* cast_abstract () { return this ; }
626626protected:
627627 virtual void data_load (NET_Packet& tNetPacket);
@@ -643,8 +643,8 @@ class CSE_ALifeObjectBreakable : public CSE_ALifeDynamicObjectVisual
643643 float m_health;
644644 CSE_ALifeObjectBreakable (LPCSTR caSection);
645645 virtual ~CSE_ALifeObjectBreakable ();
646- virtual bool used_ai_locations () const noexcept ;
647- virtual bool can_switch_offline () const noexcept ;
646+ virtual bool used_ai_locations () const /* noexcept */ ;
647+ virtual bool can_switch_offline () const /* noexcept */ ;
648648 virtual void UPDATE_Read (NET_Packet& P);
649649 virtual void UPDATE_Write (NET_Packet& P);
650650 virtual void STATE_Read (NET_Packet& P, u16 size);
@@ -661,8 +661,8 @@ class CSE_ALifeObjectClimable : public CSE_Shape, public CSE_ALifeDynamicObject
661661 CSE_ALifeObjectClimable (LPCSTR caSection);
662662 shared_str material;
663663 virtual ~CSE_ALifeObjectClimable ();
664- virtual bool used_ai_locations () const noexcept ;
665- virtual bool can_switch_offline () const noexcept ;
664+ virtual bool used_ai_locations () const /* noexcept */ ;
665+ virtual bool can_switch_offline () const /* noexcept */ ;
666666 virtual IServerEntityShape* __stdcall shape ();
667667
668668#ifndef XRGAME_EXPORTS
0 commit comments