math: 'void getMaxSubdiv' does not make any sense
Fixes build failure with GCC 6: https://bugs.debian.org/812014 (getMaxSubdiv is currently unused)
This commit is contained in:
parent
af0a51930e
commit
a6290e367a
@ -59,7 +59,7 @@ namespace simgear
|
|||||||
}
|
}
|
||||||
|
|
||||||
void setMaxSubdiv( size_t aMaxSubdiv ) { mMaxSubdiv = aMaxSubdiv; }
|
void setMaxSubdiv( size_t aMaxSubdiv ) { mMaxSubdiv = aMaxSubdiv; }
|
||||||
void getMaxSubdiv() const { return mMaxSubdiv; }
|
size_t getMaxSubdiv() const { return mMaxSubdiv; }
|
||||||
PointList &pointList() { return mPointList; }
|
PointList &pointList() { return mPointList; }
|
||||||
const PointList &pointList() const { return mPointList; }
|
const PointList &pointList() const { return mPointList; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user