mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-04 01:07:56 -04: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:
+2
-2
@@ -1,8 +1,8 @@
|
||||
// at some point: we should split this up into various OS/... headers. but not
|
||||
// yet, since barely any files include this atm.
|
||||
|
||||
#ifndef __OS_H__
|
||||
#define __OS_H__
|
||||
#ifndef OS_H_
|
||||
#define OS_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user