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:
Robert Osfield
2015-04-15 17:12:52 +00:00
parent 1909de938a
commit eb893eba75

View File

@@ -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);
}
};