diff options
Diffstat (limited to 'Source/cmGlobVerificationManager.h')
-rw-r--r-- | Source/cmGlobVerificationManager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobVerificationManager.h b/Source/cmGlobVerificationManager.h index 48606d3..2e7e1ca 100644 --- a/Source/cmGlobVerificationManager.h +++ b/Source/cmGlobVerificationManager.h @@ -5,14 +5,14 @@ #include "cmConfigure.h" // IWYU pragma: keep -#include "cmListFileCache.h" - #include <iosfwd> #include <map> #include <string> #include <utility> #include <vector> +#include "cmListFileCache.h" + /** \class cmGlobVerificationManager * \brief Class for expressing build-time dependencies on glob expressions. * @@ -72,7 +72,7 @@ private: std::vector<std::pair<std::string, cmListFileBacktrace>> Backtraces; }; - typedef std::map<CacheEntryKey, CacheEntryValue> CacheEntryMap; + using CacheEntryMap = std::map<CacheEntryKey, CacheEntryValue>; CacheEntryMap Cache; std::string VerifyScript; std::string VerifyStamp; |