]> git.stg.codes - stg.git/commitdiff
Ticket 37. if (message == "") replaced by if (message.empty()) in the
authorElena Mamontova <helenh463@gmail.com>
Mon, 8 Aug 2016 10:50:50 +0000 (13:50 +0300)
committerElena Mamontova <helenh463@gmail.com>
Mon, 8 Aug 2016 10:50:50 +0000 (13:50 +0300)
ApplyChangews() function.

projects/stargazer/plugins/configuration/sgconfig/parser_users.cpp

index ef3a470e5b9ab21d46a339b69fe2b7d4436c13b7..8f15c491a0b3e553685bc0a80cb4bb11aee9366c 100644 (file)
@@ -599,7 +599,7 @@ int CHG_USER::ApplyChanges()
         {
             const TARIFF * tariff = u->GetTariff();
             std::string message = tariff->TariffChangeIsAllowed(*newTariff);
-            if (message == "")
+            if (message.empty())
             {
                 if (!u->GetProperty().tariffName.Set(m_ucr.tariffName.const_data(), &m_currAdmin, m_login, &m_store))
                     return -1;