summaryrefslogtreecommitdiffstats
path: root/Source/cmOutputRequiredFilesCommand.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-08-23 09:11:20 (GMT)
committerKitware Robot <kwrobot@kitware.com>2017-08-23 09:11:40 (GMT)
commitac6660b6716f14815bdd0f75cf1da4cf3ad7381c (patch)
treee062c9597c77691cca746308a951eee16c1af75e /Source/cmOutputRequiredFilesCommand.cxx
parent7526b1ed3285e29565415701756cfe7db1967cd9 (diff)
parentcbcfb79f9c38c1dac28e9353cc7d7e5efec0357f (diff)
downloadCMake-ac6660b6716f14815bdd0f75cf1da4cf3ad7381c.zip
CMake-ac6660b6716f14815bdd0f75cf1da4cf3ad7381c.tar.gz
CMake-ac6660b6716f14815bdd0f75cf1da4cf3ad7381c.tar.bz2
Merge topic 'cxx11-unordered'
cbcfb79f Use C++11 unordered containers Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1174
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;