Added missing const to find VS2005 build
git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14836 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
@@ -35,7 +35,7 @@ public:
|
||||
};
|
||||
|
||||
struct LineCompare {
|
||||
bool operator()(const Line& lhs, const Line& rhs) {
|
||||
bool operator()(const Line& lhs, const Line& rhs) const {
|
||||
return lhs._a < rhs._a || (lhs._a == rhs._a && lhs._b < rhs._b);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user