From ef3162616b2ebe73ff3d09777ef7a38a9fd7b9a6 Mon Sep 17 00:00:00 2001 From: Areloch Date: Wed, 6 Jul 2016 22:48:17 -0500 Subject: [PATCH] Removes an extraneous Namespace usage on a function declaration that could cause compiler errors. --- Engine/source/T3D/aiPlayer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/T3D/aiPlayer.h b/Engine/source/T3D/aiPlayer.h index d37cb896b..a8430575c 100644 --- a/Engine/source/T3D/aiPlayer.h +++ b/Engine/source/T3D/aiPlayer.h @@ -170,7 +170,7 @@ public: void setAimLocation( const Point3F &location ); Point3F getAimLocation() const { return mAimLocation; } void clearAim(); - void AIPlayer::getMuzzleVector(U32 imageSlot,VectorF* vec); + void getMuzzleVector(U32 imageSlot,VectorF* vec); bool checkInLos(GameBase* target = NULL, bool _useMuzzle = false, bool _checkEnabled = false); bool checkInFoV(GameBase* target = NULL, F32 camFov = 45.0f, bool _checkEnabled = false); F32 getTargetDistance(GameBase* target, bool _checkEnabled);