Fixed include guard namespaces in common.

This commit is contained in:
Gary Talent 2016-03-26 16:24:00 -05:00
parent 807d0397a1
commit b358a444fb
4 changed files with 8 additions and 8 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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 {

View File

@ -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 {