From b358a444fb80d7efa0990cfefd170c9af294e3a9 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 26 Mar 2016 16:24:00 -0500 Subject: [PATCH] Fixed include guard namespaces in common. --- src/common/bounds.hpp | 4 ++-- src/common/common.hpp | 4 ++-- src/common/memops.hpp | 4 ++-- src/common/point.hpp | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/common/bounds.hpp b/src/common/bounds.hpp index 9389813c..ddbc00e4 100644 --- a/src/common/bounds.hpp +++ b/src/common/bounds.hpp @@ -5,8 +5,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#ifndef WOMBAT_COMMON_BOUNDS_HPP -#define WOMBAT_COMMON_BOUNDS_HPP +#ifndef NOSTALGIA_COMMON_BOUNDS_HPP +#define NOSTALGIA_COMMON_BOUNDS_HPP #include "point.hpp" diff --git a/src/common/common.hpp b/src/common/common.hpp index af6d5dd5..fe9c05b0 100644 --- a/src/common/common.hpp +++ b/src/common/common.hpp @@ -5,8 +5,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#ifndef WOMBAT_COMMON_COMMON_HPP -#define WOMBAT_COMMON_COMMON_HPP +#ifndef NOSTALGIA_COMMON_COMMON_HPP +#define NOSTALGIA_COMMON_COMMON_HPP #include "bounds.hpp" #include "flyweight.hpp" diff --git a/src/common/memops.hpp b/src/common/memops.hpp index cf4282f2..6b8ebc5b 100644 --- a/src/common/memops.hpp +++ b/src/common/memops.hpp @@ -5,8 +5,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#ifndef MEMPHIS_MEMOPS_HPP -#define MEMPHIS_MEMOPS_HPP +#ifndef NOSTALGIA_COMMON_MEMOPS_HPP +#define NOSTALGIA_COMMON_MEMOPS_HPP namespace nostalgia { namespace common { diff --git a/src/common/point.hpp b/src/common/point.hpp index 2651b4a3..5d1fc687 100644 --- a/src/common/point.hpp +++ b/src/common/point.hpp @@ -5,8 +5,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#ifndef WOMBAT_COMMON_POINT_HPP -#define WOMBAT_COMMON_POINT_HPP +#ifndef NOSTALGIA_COMMON_POINT_HPP +#define NOSTALGIA_COMMON_POINT_HPP namespace wombat { namespace common {