]> git.stg.codes - stg.git/commitdiff
Ticket. Changed switch to a chain of ifs.
authorElena Mamontova <helenh463@gmail.com>
Thu, 21 Jul 2016 13:08:53 +0000 (16:08 +0300)
committerElena Mamontova <helenh463@gmail.com>
Thu, 21 Jul 2016 13:08:53 +0000 (16:08 +0300)
stglibs/srvconf.lib/parsers/get_tariff.cpp

index 75b6b46293b2551aa53d56f2d0e7b68304865eb3..4844fd6c77fdbec69de28fe50aa46321c2414e6f 100644 (file)
@@ -103,23 +103,16 @@ bool GetChangePolicy(const char ** attr, T & value, const std::string & attrName
 if (!CheckValue(attr, attrName))
     return false;
 std::string type(attr[1]);
-switch (type)
-    {
-    case "allow":
+if (type == "allow")
         value = TARIFF::ALLOW;
-        break;
-    case "to_cheap":
+else if (type == "to_cheap")
         value = TARIFF::TO_CHEAP;
-        break;
-    case "to_expensive":
+else if (type == "to_expensive")
         value = TARIFF::TO_EXPENSIVE;
-        break;
-    case "deny":
+else if (type == "deny")
         value = TARIFF::DENY;
-        break;
-    default:
-        return false;
-    }
+else
+    return false;
 return true;
 }