From 9f67436b327605b033509d3a54a1bd2f7eaba4bb Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 27 Jun 2016 16:20:56 +0100 Subject: [PATCH] Fixed override method inconsistency --- src/osgPlugins/ply/ReaderWriterPLY.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/ply/ReaderWriterPLY.cpp b/src/osgPlugins/ply/ReaderWriterPLY.cpp index 18c21f5a5..62ab80554 100644 --- a/src/osgPlugins/ply/ReaderWriterPLY.cpp +++ b/src/osgPlugins/ply/ReaderWriterPLY.cpp @@ -44,7 +44,7 @@ public: supportsExtension("ply","Stanford Triangle Format"); } - virtual const char* className() { return "ReaderWriterPLY"; } + virtual const char* className() const { return "ReaderWriterPLY"; } virtual ReadResult readNode(const std::string& fileName, const osgDB::ReaderWriter::Options*) const; protected: };