From a331d5c99299c4514ca33c843b1c79b872f2728d Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 6 Nov 2020 13:18:48 +0100 Subject: Cleanup: Clang-Tidy, modernize-redundant-void-arg --- source/blender/gpu/opengl/gl_framebuffer.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/gpu/opengl/gl_framebuffer.cc') diff --git a/source/blender/gpu/opengl/gl_framebuffer.cc b/source/blender/gpu/opengl/gl_framebuffer.cc index a180aa270b0..661b976771f 100644 --- a/source/blender/gpu/opengl/gl_framebuffer.cc +++ b/source/blender/gpu/opengl/gl_framebuffer.cc @@ -92,7 +92,7 @@ GLFrameBuffer::~GLFrameBuffer() } } -void GLFrameBuffer::init(void) +void GLFrameBuffer::init() { context_ = GLContext::get(); state_manager_ = static_cast(context_->state_manager); @@ -154,7 +154,7 @@ bool GLFrameBuffer::check(char err_out[256]) return false; } -void GLFrameBuffer::update_attachments(void) +void GLFrameBuffer::update_attachments() { /* Default frame-buffers cannot have attachments. */ BLI_assert(immutable_ == false); @@ -236,7 +236,7 @@ void GLFrameBuffer::update_attachments(void) } } -void GLFrameBuffer::apply_state(void) +void GLFrameBuffer::apply_state() { if (dirty_state_ == false) { return; -- cgit v1.2.3