Kaydet (Commit) ce22d30e authored tarafından Luboš Luňák's avatar Luboš Luňák

do not try to concatenate two string literals using +

Change-Id: I7f06a9b065d5dd24da48e06792cacd27d157a656
üst 658467e3
...@@ -1140,7 +1140,7 @@ Assembly ^ TypeEmitter::type_resolve( ...@@ -1140,7 +1140,7 @@ Assembly ^ TypeEmitter::type_resolve(
const OUString sType(entry->m_xType->getName()); const OUString sType(entry->m_xType->getName());
const OUString sMemberName(pseq_member_names[i]); const OUString sMemberName(pseq_member_names[i]);
if ( ! pseq_members[i].is()) 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 + "specify additional RDBs with the --extra option. Type missing for: " + sType +
"::" + sMemberName,0); "::" + sMemberName,0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment