clang-tidy modernize
[alexxy/gromacs.git] / src / gromacs / topology / symtab.cpp
index eb5693e3019020f335304a0d0588a784f06d0580..df280d257c41a9e08b64db2bb55f9ae52b5dbb1e 100644 (file)
@@ -38,8 +38,8 @@
 
 #include "symtab.h"
 
-#include <stdio.h>
-#include <string.h>
+#include <cstdio>
+#include <cstring>
 
 #include <algorithm>
 
@@ -136,7 +136,7 @@ char **get_symtab_handle(t_symtab *symtab, int name)
     gmx_fatal(FARGS, "symtab get_symtab_handle %d not found", name);
 }
 
-static t_symbuf *new_symbuf(void)
+static t_symbuf *new_symbuf()
 {
     t_symbuf *symbuf;