mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-01 10:42:03 +03:00
Style: Fixup instances of void arguments
The style we have here is that functions with no arguments are to have explicit `void` arguments, even though this doesn't apply in C++, because it does apply in C. Unfortunately, some have slipped through the cracks. This commit fixes them.
This commit is contained in:
@@ -32,7 +32,7 @@ public:
|
||||
|
||||
void padtowidth(size_t new_w);
|
||||
|
||||
void centertext();
|
||||
void centertext(void);
|
||||
public:
|
||||
//Fundamentals
|
||||
std::vector<std::string> lines;
|
||||
|
||||
Reference in New Issue
Block a user