From: Francis Dupont Date: Sat, 22 Sep 2018 15:26:36 +0000 (+0200) Subject: [65-libyang-option-def] untabilfy X-Git-Tag: 65-libyang-class_base^2^2~6^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5c2613d73fe9f674936f609134c62aae2956a12;p=thirdparty%2Fkea.git [65-libyang-option-def] untabilfy --- diff --git a/src/lib/yang/translator_option_def.cc b/src/lib/yang/translator_option_def.cc index 4161b1d588..47e279cd05 100644 --- a/src/lib/yang/translator_option_def.cc +++ b/src/lib/yang/translator_option_def.cc @@ -45,13 +45,13 @@ TranslatorOptionDef::getOptionDefKea(const string& xpath) { ConstElementPtr type = getItem(xpath + "/type"); ConstElementPtr space = getItem(xpath + "/space"); if (!code || !space) { - // Can't happen as code and space are the keys. - isc_throw(Unexpected, "getOptionDefKea requires code and space: " - << xpath); + // Can't happen as code and space are the keys. + isc_throw(Unexpected, "getOptionDefKea requires code and space: " + << xpath); } if (!name || !type) { - isc_throw(BadValue, "getOptionDefKea requires name and type: " - << xpath); + isc_throw(BadValue, "getOptionDefKea requires name and type: " + << xpath); } ElementPtr result = Element::createMap(); result->set("code", code);