From 404d583b3e8fdd1d554404969e51c83a24dc45b2 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 26 Mar 2007 19:24:18 +0000 Subject: [PATCH] Added return false; to default implementations of convert functions --- include/osgTerrain/Locator | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgTerrain/Locator b/include/osgTerrain/Locator index 6f88e188d..189253cfa 100644 --- a/include/osgTerrain/Locator +++ b/include/osgTerrain/Locator @@ -32,8 +32,8 @@ class OSGTERRAIN_EXPORT Locator : public osg::Object META_Object(osgTerrain, Locator); - virtual bool convertLocalToModel(const osg::Vec3d& local, osg::Vec3d& world) {}; - virtual bool convertModelToWorld(const osg::Vec3d& world, osg::Vec3d& local) {}; + virtual bool convertLocalToModel(const osg::Vec3d& local, osg::Vec3d& world) { return false; }; + virtual bool convertModelToWorld(const osg::Vec3d& world, osg::Vec3d& local) { return false; }; protected: