diff --git a/libraries/gpu/src/gpu/Framebuffer.cpp b/libraries/gpu/src/gpu/Framebuffer.cpp index bc263494a1..96bd3d3002 100755 --- a/libraries/gpu/src/gpu/Framebuffer.cpp +++ b/libraries/gpu/src/gpu/Framebuffer.cpp @@ -15,12 +15,7 @@ using namespace gpu; -Framebuffer::Framebuffer() -{ -} - -Framebuffer::~Framebuffer() -{ +Framebuffer::~Framebuffer() { } Framebuffer* Framebuffer::create() { diff --git a/libraries/gpu/src/gpu/Framebuffer.h b/libraries/gpu/src/gpu/Framebuffer.h index ef77df7ceb..69e507f824 100755 --- a/libraries/gpu/src/gpu/Framebuffer.h +++ b/libraries/gpu/src/gpu/Framebuffer.h @@ -149,7 +149,7 @@ protected: // Non exposed Framebuffer(const Framebuffer& framebuffer) {} - Framebuffer(); + Framebuffer() {} // This shouldn't be used by anything else than the Backend class with the proper casting. mutable GPUObject* _gpuObject = NULL; diff --git a/libraries/gpu/src/gpu/GLBackendOutput.cpp b/libraries/gpu/src/gpu/GLBackendOutput.cpp index 9b3fb5fe34..bd8a2ab457 100755 --- a/libraries/gpu/src/gpu/GLBackendOutput.cpp +++ b/libraries/gpu/src/gpu/GLBackendOutput.cpp @@ -12,8 +12,7 @@ #include "GLBackendShared.h" -GLBackend::GLFramebuffer::GLFramebuffer() -{} +GLBackend::GLFramebuffer::GLFramebuffer() {} GLBackend::GLFramebuffer::~GLFramebuffer() { if (_fbo != 0) {