diff options
| author | Jonas 'Sortie' Termansen <[email protected]> | 2013-08-11 11:43:19 +0200 |
|---|---|---|
| committer | Jonas 'Sortie' Termansen <[email protected]> | 2013-08-12 22:51:07 +0200 |
| commit | 324b4f93dcdda1d4e50497d8ec69a6372a6817bd (patch) | |
| tree | d1fbd0fdc5ab2ff005d819d1cd792ccb465a71f7 /mp/src | |
| parent | Fix SortEntry operator< not being const. (diff) | |
| download | source-sdk-2013-324b4f93dcdda1d4e50497d8ec69a6372a6817bd.tar.xz source-sdk-2013-324b4f93dcdda1d4e50497d8ec69a6372a6817bd.zip | |
Fix bad class declaration in utils/vbsp/ivp.
The duplicated namespace in the member declaration causes the class to not
compile using gcc.
Diffstat (limited to 'mp/src')
| -rw-r--r-- | mp/src/utils/vbsp/ivp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mp/src/utils/vbsp/ivp.cpp b/mp/src/utils/vbsp/ivp.cpp index 421b1b2e..585f0904 100644 --- a/mp/src/utils/vbsp/ivp.cpp +++ b/mp/src/utils/vbsp/ivp.cpp @@ -432,7 +432,7 @@ public: private:
- CPhysConvex *CPlaneList::BuildConvexForBrush( int brushnumber, float shrink, CPhysCollide *pCollideTest, float shrinkMinimum );
+ CPhysConvex *BuildConvexForBrush( int brushnumber, float shrink, CPhysCollide *pCollideTest, float shrinkMinimum );
public:
CUtlVector<CPhysConvex *> m_convex;
|