Skip to content

Commit e528d45

Browse files
committed
Temporary workaround some Release compilation issues
1 parent 7be8e73 commit e528d45

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/xrGame/stalker_animation_manager_update.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "xrEngine/profiler.h"
1515
#include "stalker_movement_manager_smart_cover.h"
1616

17-
IC void CStalkerAnimationManager::play_delayed_callbacks()
17+
/*IC*/ void CStalkerAnimationManager::play_delayed_callbacks() // XXX: can't compile Release because of "inline"
1818
{
1919
if (m_call_script_callback)
2020
{

src/xrGame/stalker_movement_params.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class stalker_movement_params
7373
IC cover_type const* cover() const;
7474

7575
public:
76-
IC void cover_loophole_id(shared_str const& loophole_id);
76+
/*IC*/ void cover_loophole_id(shared_str const& loophole_id); // XXX: can't compile Release because of "inline"
7777
LPCSTR cover_loophole_id() const;
7878
loophole_type const* cover_loophole() const;
7979

src/xrServerEntities/xrServer_Object_Base.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ IPropHelper& PHelper()
4242
LPCSTR script_section = "script";
4343
LPCSTR current_version = "current_server_entity_version";
4444

45-
IC u16 script_server_object_version()
45+
/*IC*/ u16 script_server_object_version() // XXX: can't compile Release because of "inline"
4646
{
4747
static bool initialized = false;
4848
static u16 script_version = 0;

0 commit comments

Comments
 (0)