diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-25 01:32:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 18:05:39 (GMT) |
commit | 7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba (patch) | |
tree | 74f74a6301cdd27e3d504c95d2ff1d21ad8fa4da /Source/cmQTWrapCPPCommand.cxx | |
parent | 94fc63e2d5402bc4fa570a92e1f5fe6aba088392 (diff) | |
download | CMake-7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba.zip CMake-7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba.tar.gz CMake-7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba.tar.bz2 |
stringapi: Use strings for dependency information
Diffstat (limited to 'Source/cmQTWrapCPPCommand.cxx')
-rw-r--r-- | Source/cmQTWrapCPPCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQTWrapCPPCommand.cxx b/Source/cmQTWrapCPPCommand.cxx index 0d3c994..ca007cb 100644 --- a/Source/cmQTWrapCPPCommand.cxx +++ b/Source/cmQTWrapCPPCommand.cxx @@ -97,7 +97,7 @@ bool cmQTWrapCPPCommand::InitialPass(std::vector<std::string> const& argsIn, depends.push_back(moc_exe); depends.push_back(hname); - const char* no_main_dependency = 0; + std::string no_main_dependency = ""; const char* no_working_dir = 0; this->Makefile->AddCustomCommandToOutput(newName.c_str(), depends, |