summaryrefslogtreecommitdiff
path: root/include/JSystem/J2DGraph
diff options
context:
space:
mode:
authorErin Moon <erin@hecke.rs>2021-01-18 13:02:51 -0600
committerGitHub <noreply@github.com>2021-01-18 14:02:51 -0500
commitc70d485d3519ffa6d54b4d9a5581247de8fe9587 (patch)
treecba0edf9e5246ec629db53aee40532c816d0d29c /include/JSystem/J2DGraph
parent8a7a0e502a3a446f115786a05085f65990af2c4b (diff)
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>
Diffstat (limited to 'include/JSystem/J2DGraph')
-rw-r--r--include/JSystem/J2DGraph/J2DPicture/J2DPicture.h4
-rw-r--r--include/JSystem/J2DGraph/J2DScreen/J2DScreen.h4
-rw-r--r--include/JSystem/J2DGraph/J2DTextBox/J2DTextBox.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h b/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h
index 1355ccc768..ad5188f3f9 100644
--- a/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h
+++ b/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h
@@ -1,5 +1,5 @@
-#ifndef __J2DPICTURE_H_
-#define __J2DPICTURE_H_
+#ifndef J2DPICTURE_H_
+#define J2DPICTURE_H_
#include "global.h"
diff --git a/include/JSystem/J2DGraph/J2DScreen/J2DScreen.h b/include/JSystem/J2DGraph/J2DScreen/J2DScreen.h
index c917c070f3..2aa7891c1e 100644
--- a/include/JSystem/J2DGraph/J2DScreen/J2DScreen.h
+++ b/include/JSystem/J2DGraph/J2DScreen/J2DScreen.h
@@ -1,5 +1,5 @@
-#ifndef __J2DSCREEN_H_
-#define __J2DSCREEN_H_
+#ifndef J2DSCREEN_H_
+#define J2DSCREEN_H_
#include "global.h"
diff --git a/include/JSystem/J2DGraph/J2DTextBox/J2DTextBox.h b/include/JSystem/J2DGraph/J2DTextBox/J2DTextBox.h
index d5055148f3..619ba33c49 100644
--- a/include/JSystem/J2DGraph/J2DTextBox/J2DTextBox.h
+++ b/include/JSystem/J2DGraph/J2DTextBox/J2DTextBox.h
@@ -1,5 +1,5 @@
-#ifndef __J2DTEXTBOX_H_
-#define __J2DTEXTBOX_H_
+#ifndef J2DTEXTBOX_H_
+#define J2DTEXTBOX_H_
#include "global.h"