dwww Home | Show directory contents | Find package

# returning-void-expression

Warns when returning a void expression.

Example:
```
void doStuff()
{
    if (cond)
        return // Oops, forgot the ; but it still compiles since processStuff() returns void.

    processStuff();
}
```

Generated by dwww version 1.15 on Sat May 18 12:45:57 CEST 2024.