issues
search
pezmaster31
/
bamtools
C++ API & command-line toolkit for working with BAM data
MIT License
418
stars
153
forks
source link
Remove `(void)` function declarations
#163
Closed
SoapZA
closed
7 years ago
SoapZA
commented
7 years ago
ISO C++ since the first C++98 release has never required
(void)
prototypes. This is a vestige of ancient K&R C and should be avoided in C++, as it adds no clarity or value.
(void)
prototypes. This is a vestige of ancient K&R C and should be avoided in C++, as it adds no clarity or value.