From: Mikko Rasa Date: Fri, 24 May 2019 19:26:34 +0000 (+0300) Subject: Remove useless using declarations X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=d366b051df5543c46ebae383ce08e940788e950d Remove useless using declarations Scene no longer has any other overloads of render(). --- diff --git a/source/instancescene.h b/source/instancescene.h index 3f345124..2a918401 100644 --- a/source/instancescene.h +++ b/source/instancescene.h @@ -28,7 +28,6 @@ public: virtual void setup_frame(Renderer &); virtual void finish_frame(); - using Scene::render; virtual void render(Renderer &, const Tag &tag = Tag()) const; }; diff --git a/source/simplescene.h b/source/simplescene.h index 420b0090..e56aeb0c 100644 --- a/source/simplescene.h +++ b/source/simplescene.h @@ -30,7 +30,6 @@ public: virtual void setup_frame(Renderer &); virtual void finish_frame(); - using Scene::render; virtual void render(Renderer &, const Tag & = Tag()) const; };