mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
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>
8 lines
94 B
C++
8 lines
94 B
C++
#ifndef J2DPICTURE_H_
|
|
#define J2DPICTURE_H_
|
|
|
|
#include "global.h"
|
|
|
|
class J2DPicture {};
|
|
|
|
#endif |