diff options
author | Brad King <brad.king@kitware.com> | 2008-03-15 14:00:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-03-15 14:00:07 (GMT) |
commit | 133e5b5dd84c17f053549e2fc8d0995dfb01c076 (patch) | |
tree | 4ecc24e909f490a59e7a8c5fe585e416b4e67f9a /Source/cmTarget.cxx | |
parent | 204a70cff8b83232fe18cfde479b93f14d946622 (diff) | |
download | CMake-133e5b5dd84c17f053549e2fc8d0995dfb01c076.zip CMake-133e5b5dd84c17f053549e2fc8d0995dfb01c076.tar.gz CMake-133e5b5dd84c17f053549e2fc8d0995dfb01c076.tar.bz2 |
STYLE: Fix line-too-long for new INTERNAL_ERROR messages.
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 |