summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-01-30 15:09:48 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-01-30 15:13:01 +0100
commitce22d30eeb6fcd3dfcf3fe3c67adeaddb0d97017 (patch)
tree9e0c072229bfdaa1b13ccfb0ad1112e9f441a7a5 /cli_ure
parent658467e3e10b88a07b6c0c326eec8d35b6cfb338 (diff)
do not try to concatenate two string literals using +
Change-Id: I7f06a9b065d5dd24da48e06792cacd27d157a656
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 cb4e427d7904..fcefc2637572 100644
--- a/cli_ure/source/climaker/climaker_emit.cxx
+++ b/cli_ure/source/climaker/climaker_emit.cxx
@@ -1140,7 +1140,7 @@ Assembly ^ TypeEmitter::type_resolve(
const OUString sType(entry->m_xType->getName());
const OUString sMemberName(pseq_member_names[i]);
if ( ! pseq_members[i].is())
- throw RuntimeException("Missing type description . Check if you need to " +
+ throw RuntimeException("Missing type description . Check if you need to "
"specify additional RDBs with the --extra option. Type missing for: " + sType +
"::" + sMemberName,0);
}