summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-12-28 12:43:31 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-30 18:48:24 +0000
commita29bd2dabb194c57be28d48ccc08c909831e7e67 (patch)
tree4afc38c5b5ad034a8784ae0c0f0317b6d676510d /cli_ure
parent97d24068021265e5f159211c90839622f7c87cb2 (diff)
cleanup tailing backslashes
Change-Id: Idb4bfc97e7d758c58118742affd9a9345c7a99f2 Reviewed-on: https://gerrit.libreoffice.org/32491 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/climaker/climaker_emit.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli_ure/source/climaker/climaker_emit.cxx b/cli_ure/source/climaker/climaker_emit.cxx
index 7e9c466344fa..55e7bc9f9c11 100644
--- a/cli_ure/source/climaker/climaker_emit.cxx
+++ b/cli_ure/source/climaker/climaker_emit.cxx
@@ -339,7 +339,7 @@ Assembly ^ TypeEmitter::type_resolve(
::System::Text::StringBuilder ^ sb = gcnew ::System::Text::StringBuilder();
sb->Append(gcnew ::System::String("\nThe type "));
sb->Append(cts_name);
- sb->Append(gcnew ::System::String(" \n could not be found. Did you forget to " \
+ sb->Append(gcnew ::System::String(" \n could not be found. Did you forget to "
"specify an additional assembly with the --reference option?\n"));
if (throw_exc)
throw gcnew ::System::Exception(sb->ToString(), exc);