Remove redundant (void) parameter declarations

This commit is contained in:
Rangi42
2024-03-01 10:35:50 -05:00
parent 91d22f180e
commit e14ba664ea
38 changed files with 173 additions and 173 deletions

View File

@@ -78,12 +78,12 @@ void charmap_Set(char const *name)
currentCharmap = &search->second;
}
void charmap_Push(void)
void charmap_Push()
{
charmapStack.push(currentCharmap);
}
void charmap_Pop(void)
void charmap_Pop()
{
if (charmapStack.empty()) {
error("No entries in the charmap stack\n");