Skip to content

Commit

Permalink
Temporary workaround some Release compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Nov 16, 2017
1 parent 7be8e73 commit e528d45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/xrGame/stalker_animation_manager_update.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "xrEngine/profiler.h"
#include "stalker_movement_manager_smart_cover.h"

IC void CStalkerAnimationManager::play_delayed_callbacks()
/*IC*/ void CStalkerAnimationManager::play_delayed_callbacks() // XXX: can't compile Release because of "inline"
{
if (m_call_script_callback)
{
Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/stalker_movement_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class stalker_movement_params
IC cover_type const* cover() const;

public:
IC void cover_loophole_id(shared_str const& loophole_id);
/*IC*/ void cover_loophole_id(shared_str const& loophole_id); // XXX: can't compile Release because of "inline"
LPCSTR cover_loophole_id() const;
loophole_type const* cover_loophole() const;

Expand Down
2 changes: 1 addition & 1 deletion src/xrServerEntities/xrServer_Object_Base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ IPropHelper& PHelper()
LPCSTR script_section = "script";
LPCSTR current_version = "current_server_entity_version";

IC u16 script_server_object_version()
/*IC*/ u16 script_server_object_version() // XXX: can't compile Release because of "inline"
{
static bool initialized = false;
static u16 script_version = 0;
Expand Down

0 comments on commit e528d45

Please sign in to comment.