summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2019-01-22 15:39:08 (GMT)
committerVitaly Stakhovsky <vvs31415@gitlab.org>2019-01-22 16:11:13 (GMT)
commit614876c638f7a428ff2f47104e2427bdbb64958d (patch)
tree22686709f2237ce299a9074a67daea8bf6d6d5c3 /Source/cmLocalGenerator.h
parentbcc9ea2b3d9cd3b882dbb2a23502b0392cb21d1b (diff)
downloadCMake-614876c638f7a428ff2f47104e2427bdbb64958d.zip
CMake-614876c638f7a428ff2f47104e2427bdbb64958d.tar.gz
CMake-614876c638f7a428ff2f47104e2427bdbb64958d.tar.bz2
cmLocalUnixMakefileGenerator3: more methods accept std::string
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index dc54314..ebc613b 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -233,8 +233,8 @@ public:
virtual void ClearDependencies(cmMakefile* /* mf */, bool /* verbose */) {}
/** Called from command-line hook to update dependencies. */
- virtual bool UpdateDependencies(const char* /* tgtInfo */, bool /*verbose*/,
- bool /*color*/)
+ virtual bool UpdateDependencies(const std::string& /* tgtInfo */,
+ bool /*verbose*/, bool /*color*/)
{
return true;
}