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

@@ -55,7 +55,7 @@ GLUniformBuf::~GLUniformBuf()
/** \name Data upload / update
* \{ */
void GLUniformBuf::init(void)
void GLUniformBuf::init()
{
BLI_assert(GLContext::get());
@@ -111,7 +111,7 @@ void GLUniformBuf::bind(int slot)
#endif
}
void GLUniformBuf::unbind(void)
void GLUniformBuf::unbind()
{
#ifdef DEBUG
/* NOTE: This only unbinds the last bound slot. */