summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-08-22 15:26:54 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-08-22 15:26:54 (GMT)
commit032106c3379d26f28b3b7953165d8fc018f772af (patch)
tree0cff9ce1f7fa065fe4da615f9164f9cb4edb4a08 /Source/cmMakefile.h
parentb76b5c6ea2b2632a61860906ec1d906742880b6a (diff)
downloadCMake-032106c3379d26f28b3b7953165d8fc018f772af.zip
CMake-032106c3379d26f28b3b7953165d8fc018f772af.tar.gz
CMake-032106c3379d26f28b3b7953165d8fc018f772af.tar.bz2
BUG: shorten length of symbols
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 1ca5a18..d55e8c2 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -552,7 +552,10 @@ protected:
SourceMap m_Sources;
std::vector<std::string> m_SubDirectories; // list of sub directories
- std::map<std::string, std::set<std::string> > m_SubdirDepends;
+ struct StringSet : public std::set<std::string>
+ {
+ };
+ std::map<std::string, StringSet > m_SubdirDepends;
// The include and link-library paths. These may have order
// dependency, so they must be vectors (not set).