diff options
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 2f695da..53341f7 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -2586,11 +2586,10 @@ void cmTarget::GetExecutableNamesInternal(std::string& name, // enforcement of the limited imported target API. if(this->IsImported()) { - std::string msg = "GetExecutableNamesInternal called on imported target: "; + std::string msg = + "GetExecutableNamesInternal called on imported target: "; msg += this->GetName(); - this->GetMakefile()-> - IssueMessage(cmake::INTERNAL_ERROR, - msg.c_str()); + this->GetMakefile()->IssueMessage(cmake::INTERNAL_ERROR, msg.c_str()); } // This versioning is supported only for executables and then only |