From 51920be9a775af0e0b06c039f71ebd1d337ab4eb Mon Sep 17 00:00:00 2001 From: artemp Date: Wed, 2 Dec 2015 14:30:59 +0000 Subject: [PATCH] move #ifdef/#endif to include include directive and avoid redundant --- include/mapnik/make_unique.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mapnik/make_unique.hpp b/include/mapnik/make_unique.hpp index f6fd4a230..577c0cf78 100644 --- a/include/mapnik/make_unique.hpp +++ b/include/mapnik/make_unique.hpp @@ -23,11 +23,11 @@ #ifndef MAPNIK_MAKE_UNIQUE_HPP #define MAPNIK_MAKE_UNIQUE_HPP -#include - // http://stackoverflow.com/questions/14131454/visual-studio-2012-cplusplus-and-c-11 #if defined(_MSC_VER) && _MSC_VER < 1800 || !defined(_MSC_VER) && __cplusplus <= 201103L +#include + namespace std { // C++14 backfill from http://herbsutter.com/gotw/_102/