summaryrefslogtreecommitdiff
path: root/src/mongo/stdx
diff options
context:
space:
mode:
authorJonathan Reams <jbreams@mongodb.com>2015-03-26 18:00:00 -0400
committerJonathan Reams <jbreams@mongodb.com>2015-03-26 18:30:00 -0400
commitef7f17be8085488ba965286fb97927a7ce3600e7 (patch)
tree48caef5aaf331f1035c02489a78feab2ccaef789 /src/mongo/stdx
parent66c14dd70dd4427fef0d424b9675570614e13ca7 (diff)
downloadmongo-ef7f17be8085488ba965286fb97927a7ce3600e7.tar.gz
SERVER-9563 Add support for config.h header
Diffstat (limited to 'src/mongo/stdx')
-rw-r--r--src/mongo/stdx/memory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/stdx/memory.h b/src/mongo/stdx/memory.h
index aa93e14f545..7bc01af79d9 100644
--- a/src/mongo/stdx/memory.h
+++ b/src/mongo/stdx/memory.h
@@ -28,7 +28,9 @@
#pragma once
-#if defined(MONGO_HAVE_STD_MAKE_UNIQUE)
+#include "mongo/config.h"
+
+#if defined(MONGO_CONFIG_HAVE_STD_MAKE_UNIQUE)
#include <memory>