Changed backtics to single ticks in string literal.

This commit is contained in:
Joakim Hove 2014-12-08 15:55:20 +01:00
parent 3604350847
commit ec6d22c9c2

View File

@ -343,11 +343,11 @@ namespace Opm {
auto group_salt_item = record->getItem("GROUP_SALT_CONCENTRATION"); auto group_salt_item = record->getItem("GROUP_SALT_CONCENTRATION");
if (!group_polymer_item->defaultApplied(0)) { if (!group_polymer_item->defaultApplied(0)) {
throw std::logic_error("Sorry explicit setting of \`GROUP_POLYMER_CONCENTRATION\` is not supported!"); throw std::logic_error("Sorry explicit setting of \'GROUP_POLYMER_CONCENTRATION\' is not supported!");
} }
if (!group_salt_item->defaultApplied(0)) { if (!group_salt_item->defaultApplied(0)) {
throw std::logic_error("Sorry explicit setting of \`GROUP_SALT_CONCENTRATION\` is not supported!"); throw std::logic_error("Sorry explicit setting of \'GROUP_SALT_CONCENTRATION\' is not supported!");
} }
well->setPolymerProperties(currentStep, properties); well->setPolymerProperties(currentStep, properties);
} }