diff options
author | Brad King <brad.king@kitware.com> | 2003-06-23 18:10:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-06-23 18:10:12 (GMT) |
commit | 38482b46d171bde2073fadab65118c5c9df29e0f (patch) | |
tree | cce4d062f94612f514f2b13cff42f5426c531b4b /Source/cmMakeDepend.h | |
parent | b2368399d91b710616a3c53fc39bd8e11971b42f (diff) | |
download | CMake-38482b46d171bde2073fadab65118c5c9df29e0f.zip CMake-38482b46d171bde2073fadab65118c5c9df29e0f.tar.gz CMake-38482b46d171bde2073fadab65118c5c9df29e0f.tar.bz2 |
ENH: Merged use of the kwsys RegularExpression class instead of cmRegularExpression.
Diffstat (limited to 'Source/cmMakeDepend.h')
-rw-r--r-- | Source/cmMakeDepend.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmMakeDepend.h b/Source/cmMakeDepend.h index bc489fc..d9045a5 100644 --- a/Source/cmMakeDepend.h +++ b/Source/cmMakeDepend.h @@ -19,9 +19,10 @@ #include "cmMakefile.h" #include "cmSourceFile.h" -#include "cmRegularExpression.h" #include "cmStandardIncludes.h" +#include <cmsys/RegularExpression.hxx> + /** \class cmDependInformation * \brief Store dependency information for a single source file. * @@ -150,8 +151,8 @@ protected: const cmMakefile* m_Makefile; bool m_Verbose; - cmRegularExpression m_IncludeFileRegularExpression; - cmRegularExpression m_ComplainFileRegularExpression; + cmsys::RegularExpression m_IncludeFileRegularExpression; + cmsys::RegularExpression m_ComplainFileRegularExpression; std::vector<std::string> m_IncludeDirectories; typedef std::map<cmStdString, cmDependInformation*> DependInformationMap; DependInformationMap m_DependInformationMap; |