summaryrefslogtreecommitdiffstats
path: root/Source/cmOutputRequiredFilesCommand.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-08-22 21:05:27 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-08-22 21:05:27 (GMT)
commitcbcfb79f9c38c1dac28e9353cc7d7e5efec0357f (patch)
treebc2a5bea4adc0805b5439679c90e52103348a23a /Source/cmOutputRequiredFilesCommand.cxx
parent8a0ed37f617347a6c7c37c50a5321f05d678fa76 (diff)
downloadCMake-cbcfb79f9c38c1dac28e9353cc7d7e5efec0357f.zip
CMake-cbcfb79f9c38c1dac28e9353cc7d7e5efec0357f.tar.gz
CMake-cbcfb79f9c38c1dac28e9353cc7d7e5efec0357f.tar.bz2
Use C++11 unordered containers
Diffstat (limited to 'Source/cmOutputRequiredFilesCommand.cxx')
-rw-r--r--Source/cmOutputRequiredFilesCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmOutputRequiredFilesCommand.cxx b/Source/cmOutputRequiredFilesCommand.cxx
index 2339d68..93d2c14 100644
--- a/Source/cmOutputRequiredFilesCommand.cxx
+++ b/Source/cmOutputRequiredFilesCommand.cxx
@@ -5,6 +5,7 @@
#include "cmsys/FStream.hxx"
#include "cmsys/RegularExpression.hxx"
#include <map>
+#include <unordered_map>
#include <utility>
#include "cmAlgorithms.h"
@@ -13,7 +14,6 @@
#include "cmSourceFile.h"
#include "cmSystemTools.h"
#include "cmTarget.h"
-#include "cm_unordered_map.hxx"
class cmExecutionStatus;