Skip to content

Commit f4b1a84

Browse files
author
nitrocaster
committed
Fix nonstandard type conversion.
1 parent 5a15544 commit f4b1a84

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/xrEngine/Feel_Touch.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ namespace Feel
77
{
88
class ENGINE_API Touch : private pure_relcase
99
{
10+
friend class pure_relcase;
1011
public:
1112
struct DenyTouch
1213
{

src/xrEngine/Feel_Vision.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const float lr_granularity = 0.1f; // assume similar positions
1717

1818
class ENGINE_API Vision : private pure_relcase
1919
{
20+
friend class pure_relcase;
2021
private:
2122
xr_vector<CObject*> seen;
2223
xr_vector<CObject*> query;

src/xrGame/game_sv_deathmatch.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class IClient;
1010

1111
class game_sv_Deathmatch : public game_sv_mp,private pure_relcase
1212
{
13+
friend class pure_relcase;
1314
typedef game_sv_mp inherited;
1415
protected:
1516
struct RPointData

0 commit comments

Comments
 (0)