summaryrefslogtreecommitdiff
path: root/include/JSystem/JMath
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/JMath
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/JMath')
-rw-r--r--include/JSystem/JMath/random.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/JSystem/JMath/random.h b/include/JSystem/JMath/random.h
index ae45b427c6..16ba208290 100644
--- a/include/JSystem/JMath/random.h
+++ b/include/JSystem/JMath/random.h
@@ -1,5 +1,5 @@
-#ifndef __JSYSTEM_JMATH_RANDOM_H__
-#define __JSYSTEM_JMATH_RANDOM_H__
+#ifndef JSYSTEM_JMATH_RANDOM_H_
+#define JSYSTEM_JMATH_RANDOM_H_
#include "dolphin/types.h"