From 43f8a13d0347fc8f0a33e8e6b0098d65af36c6b5 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 8 Jun 2016 11:06:52 +0100 Subject: [PATCH] Fixed ignored qualifiers warning --- examples/osgcluster/osgcluster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/osgcluster/osgcluster.cpp b/examples/osgcluster/osgcluster.cpp index de5f3eaa5..c9ddf2cd8 100644 --- a/examples/osgcluster/osgcluster.cpp +++ b/examples/osgcluster/osgcluster.cpp @@ -74,7 +74,7 @@ class CameraPacket { void writeEventQueue(osgViewer::Viewer& viewer); void setMasterKilled(const bool flag) { _masterKilled = flag; } - const bool getMasterKilled() const { return _masterKilled; } + bool getMasterKilled() const { return _masterKilled; } unsigned int _byte_order; bool _masterKilled;