Cleanup: Clang-tidy: modernize-redundant-void-arg

This commit is contained in:
2022-01-05 21:44:03 -05:00
parent c0fb8ea8f3
commit 4067367b6c
31 changed files with 137 additions and 137 deletions

View File

@@ -74,7 +74,7 @@ class ShaderInterface {
ShaderInterface();
virtual ~ShaderInterface();
void debug_print(void);
void debug_print();
inline const ShaderInput *attr_get(const char *name) const
{
@@ -133,7 +133,7 @@ class ShaderInterface {
/**
* Finalize interface construction by sorting the #ShaderInputs for faster lookups.
*/
void sort_inputs(void);
void sort_inputs();
private:
inline const ShaderInput *input_lookup(const ShaderInput *const inputs,