Skip to content

Commit

Permalink
Fix ReSharper warnings: remove unused methods
Browse files Browse the repository at this point in the history
  • Loading branch information
hymerman committed Feb 26, 2016
1 parent a2730f9 commit d7d58b9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions DetourTileCache/Source/DetourTileCacheBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ template<class T> class dtFixedArray
dtTileCacheAlloc* m_alloc;
T* m_ptr;
const int m_size;
inline T* operator=(T* p);
inline void operator=(dtFixedArray<T>& p);
inline dtFixedArray();
public:
inline dtFixedArray(dtTileCacheAlloc* a, const int s) : m_alloc(a), m_ptr((T*)a->alloc(sizeof(T)*s)), m_size(s) {}
inline ~dtFixedArray() { if (m_alloc) m_alloc->free(m_ptr); }
Expand Down
1 change: 0 additions & 1 deletion Recast/Include/RecastAlloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ class rcIntArray
template<class T> class rcScopedDelete
{
T* ptr;
inline T* operator=(T* p);
public:

/// Constructs an instance with a null pointer.
Expand Down
3 changes: 0 additions & 3 deletions RecastDemo/Include/CrowdTool.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,6 @@ class CrowdTool : public SampleTool
};
ToolMode m_mode;

void updateAgentParams();
void updateTick(const float dt);

public:
CrowdTool();

Expand Down

0 comments on commit d7d58b9

Please sign in to comment.