mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
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:
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSUFILEINPUTSTREAM_H__
|
||||
#define __JSUFILEINPUTSTREAM_H__
|
||||
#ifndef JSUFILEINPUTSTREAM_H_
|
||||
#define JSUFILEINPUTSTREAM_H_
|
||||
|
||||
#include "JSystem/JSupport/JSURandomInputStream/JSURandomInputStream.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSUINPUTSTREAM_H__
|
||||
#define __JSUINPUTSTREAM_H__
|
||||
#ifndef JSUINPUTSTREAM_H_
|
||||
#define JSUINPUTSTREAM_H_
|
||||
|
||||
#include "JSystem/JSupport/JSUIosBase.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSUIOSBASE_H__
|
||||
#define __JSUIOSBASE_H__
|
||||
#ifndef JSUIOSBASE_H_
|
||||
#define JSUIOSBASE_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSULIST_H__
|
||||
#define __JSULIST_H__
|
||||
#ifndef JSULIST_H_
|
||||
#define JSULIST_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSURANDOMINPUTSTREAM_H__
|
||||
#define __JSURANDOMINPUTSTREAM_H__
|
||||
#ifndef JSURANDOMINPUTSTREAM_H_
|
||||
#define JSURANDOMINPUTSTREAM_H_
|
||||
|
||||
#include "JSystem/JSupport/JSUInputStream.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
Reference in New Issue
Block a user