From 8198498e81ec2530800b4c9dc5426c8abdfc5d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Tue, 8 Mar 2016 23:28:50 +0100 Subject: [PATCH] Nouveaux include guards --- ball.hpp | 4 ++-- block.hpp | 4 ++-- engine.hpp | 4 ++-- object.hpp | 4 ++-- physics_object.hpp | 4 ++-- state.hpp | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ball.hpp b/ball.hpp index 5703274..05f3748 100644 --- a/ball.hpp +++ b/ball.hpp @@ -1,5 +1,5 @@ -#ifndef PTF_BALL_HPP -#define PTF_BALL_HPP +#ifndef __PTF_BALL_HPP__ +#define __PTF_BALL_HPP__ #include #include diff --git a/block.hpp b/block.hpp index 1f14933..93f08e6 100644 --- a/block.hpp +++ b/block.hpp @@ -1,5 +1,5 @@ -#ifndef PTF_BLOCK_HPP -#define PTF_BLOCK_HPP +#ifndef __PTF_BLOCK_HPP__ +#define __PTF_BLOCK_HPP__ #include #include diff --git a/engine.hpp b/engine.hpp index dfc9f17..eaae37b 100644 --- a/engine.hpp +++ b/engine.hpp @@ -1,5 +1,5 @@ -#ifndef PTF_ENGINE_HPP -#define PTF_ENGINE_HPP +#ifndef __PTF_ENGINE_HPP__ +#define __PTF_ENGINE_HPP__ #include #include diff --git a/object.hpp b/object.hpp index 1698459..8e55df9 100644 --- a/object.hpp +++ b/object.hpp @@ -1,5 +1,5 @@ -#ifndef PTF_OBJECT_HPP -#define PTF_OBJECT_HPP +#ifndef __PTF_OBJECT_HPP__ +#define __PTF_OBJECT_HPP__ #include #include diff --git a/physics_object.hpp b/physics_object.hpp index 0c95391..07b5c88 100644 --- a/physics_object.hpp +++ b/physics_object.hpp @@ -1,5 +1,5 @@ -#ifndef PTF_OBJECT_HPP -#define PTF_OBJECT_HPP +#ifndef __PTF_PHYSICS_OBJECT_HPP__ +#define __PTF_PHYSICS_OBJECT_HPP__ #include #include diff --git a/state.hpp b/state.hpp index d02df4a..bc6994d 100644 --- a/state.hpp +++ b/state.hpp @@ -1,5 +1,5 @@ -#ifndef PTF_STATE_HPP -#define PTF_STATE_HPP +#ifndef __PTF_STATE_HPP__ +#define __PTF_STATE_HPP__ #include