]> git.localhorst.tv Git - blank.git/commitdiff
remove unused (explicit) destructors
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 23 Feb 2015 21:22:42 +0000 (22:22 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 23 Feb 2015 21:22:42 +0000 (22:22 +0100)
src/app.cpp
src/app.hpp
src/camera.cpp
src/camera.hpp
src/controller.cpp
src/controller.hpp
src/init.cpp
src/init.hpp

index c418660ec48d209be4fef8ba2074c3aa1bb192ee..5a5d6fba176376ab1052cec778afe9dd90c242e2 100644 (file)
@@ -163,10 +163,6 @@ Application::Application()
        glClearColor(0.0, 0.0, 0.0, 1.0);
 }
 
-Application::~Application() {
-
-}
-
 
 void Application::Run() {
        running = true;
index 8c6d792bdd48f63041b9068a44c303737be8fd28..00154039d371cf9236d8b76afe11965ff1d44bdd 100644 (file)
@@ -18,7 +18,6 @@ class Application {
 
 public:
        Application();
-       ~Application();
 
        Application(const Application &) = delete;
        Application &operator =(const Application &) = delete;
index 8804d115b36574cdab2618fb441f0d1a50958696..c5283bd7f77bf86729b688342265dc4919bab47f 100644 (file)
@@ -18,10 +18,6 @@ Camera::Camera()
 
 }
 
-Camera::~Camera() {
-
-}
-
 
 void Camera::Viewport(int width, int height) {
        Viewport(0, 0, width, height);
index 419922a39f1c3ee32578b847d5c21c7f31a3a434..3adb800ce344b03da6a2261d5486c2ef4fd58365 100644 (file)
@@ -14,7 +14,6 @@ class Camera
 
 public:
        Camera();
-       ~Camera();
 
        Camera(const Camera &) = delete;
        Camera &operator =(const Camera &) = delete;
index 5d547b7eab8d3a39b725137425367fe9480d960d..d0a026b7069111284a38ef259819c83ed9af2377 100644 (file)
@@ -16,10 +16,6 @@ FPSController::FPSController()
 
 }
 
-FPSController::~FPSController() {
-
-}
-
 
 glm::mat4 FPSController::Transform() const {
        return glm::translate(position) * glm::eulerAngleYX(yaw, pitch);
index 013b3e4de3b82ef4e365f1667d9a102d70ac08c1..f636bcdccd15bc64339a287044a32cabae9fc45a 100644 (file)
@@ -10,7 +10,6 @@ class FPSController {
 
 public:
        FPSController();
-       ~FPSController();
 
        glm::mat4 Transform() const;
 
index 9e73c2890226e11cd20a271cefae00c79c4f3e7c..2c1c73ad6155e0aae9654f9fa9a58f6c93477fe2 100644 (file)
@@ -62,10 +62,6 @@ InitGL::InitGL() {
        }
 }
 
-InitGL::~InitGL() {
-
-}
-
 
 Window::Window()
 : handle(SDL_CreateWindow(
@@ -171,8 +167,4 @@ InitGLEW::InitGLEW() {
        }
 }
 
-InitGLEW::~InitGLEW() {
-
-}
-
 }
index d596cbc346f880247a98b8b3ceae9e278acdaa9a..a467e69157eebc63e29dd5dcb961aeb8cb4febad 100644 (file)
@@ -37,7 +37,6 @@ class InitGL {
 
 public:
        InitGL();
-       ~InitGL();
 
        InitGL(const InitGL &) = delete;
        InitGL &operator =(const InitGL &) = delete;
@@ -98,7 +97,6 @@ class InitGLEW {
 
 public:
        InitGLEW();
-       ~InitGLEW();
 
        InitGLEW(const InitGLEW &) = delete;
        InitGLEW &operator =(const InitGLEW &) = delete;