normalize header guards to {tu_name}_H_ (#87)

i previously had a bad habit of using double underscores in include
guard macro names, which are implementation-reserved per
the C++98 standard (see 17.4.3.1.2 Global names).

Co-authored-by: Pheenoh <pheenoh@gmail.com>
This commit is contained in:
Erin Moon
2021-01-18 13:02:51 -06:00
committed by GitHub
parent a154ad0688
commit ebd329b188
145 changed files with 290 additions and 290 deletions
@@ -1,5 +1,5 @@
#ifndef __J2DTEXTBOX_H_
#define __J2DTEXTBOX_H_
#ifndef J2DTEXTBOX_H_
#define J2DTEXTBOX_H_
#include "global.h"