From ec6d22c9c24631086eccaaa2f0e8e06234a46a82 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Mon, 8 Dec 2014 15:55:20 +0100 Subject: [PATCH] Changed backtics to single ticks in string literal. --- opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp b/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp index c9faadee1..48ffcb745 100644 --- a/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp +++ b/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp @@ -343,11 +343,11 @@ namespace Opm { auto group_salt_item = record->getItem("GROUP_SALT_CONCENTRATION"); 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)) { - 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); }