summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-20 22:19:09 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-20 22:19:45 (GMT)
commit3029c27e46a193c6319a3c909f938e6614c2b14f (patch)
tree1601c34f5c414c11b60b0610fd0ba9e1fada5b42
parent9afbb733ec2a55424e6c25c6afa7fdd14219d6b1 (diff)
downloadCMake-3029c27e46a193c6319a3c909f938e6614c2b14f.zip
CMake-3029c27e46a193c6319a3c909f938e6614c2b14f.tar.gz
CMake-3029c27e46a193c6319a3c909f938e6614c2b14f.tar.bz2
cmMakeDepend: Use public cmMakefile API.
-rw-r--r--Source/cmMakeDepend.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakeDepend.cxx b/Source/cmMakeDepend.cxx
index cbc7e02..f4a22ed 100644
--- a/Source/cmMakeDepend.cxx
+++ b/Source/cmMakeDepend.cxx
@@ -51,7 +51,7 @@ void cmMakeDepend::SetMakefile(cmMakefile* makefile)
this->IncludeFileRegularExpression.compile(
this->Makefile->GetIncludeRegularExpression());
this->ComplainFileRegularExpression.compile(
- this->Makefile->ComplainFileRegularExpression.c_str());
+ this->Makefile->GetComplainRegularExpression());
// Now extract any include paths from the targets
std::set<std::string> uniqueIncludes;