Cleanup: Clang-Tidy, modernize-redundant-void-arg

This commit is contained in:
2020-11-06 13:18:48 +01:00
parent 41db8f2fce
commit a331d5c992
27 changed files with 98 additions and 99 deletions

View File

@@ -88,7 +88,7 @@ GLDrawList::~GLDrawList()
GLContext::buf_free(buffer_id_);
}
void GLDrawList::init(void)
void GLDrawList::init()
{
BLI_assert(GLContext::get());
BLI_assert(MDI_ENABLED);
@@ -169,7 +169,7 @@ void GLDrawList::append(GPUBatch *gpu_batch, int i_first, int i_count)
}
}
void GLDrawList::submit(void)
void GLDrawList::submit()
{
if (command_len_ == 0) {
return;