From 391980ce1e890445542441eeb5d9f9cc18ae1baf Mon Sep 17 00:00:00 2001
From: George Hazan <ghazan@miranda.im>
Date: Fri, 26 Jan 2018 22:31:20 +0300
Subject: code optimization

---
 plugins/SMS/src/SMS_svc.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'plugins/SMS')

diff --git a/plugins/SMS/src/SMS_svc.cpp b/plugins/SMS/src/SMS_svc.cpp
index 330c089f08..ee3b8dc53c 100644
--- a/plugins/SMS/src/SMS_svc.cpp
+++ b/plugins/SMS/src/SMS_svc.cpp
@@ -8,9 +8,9 @@ int LoadServices(void)
 	pszServiceFunctionName = szServiceFunction + PROTOCOL_NAME_LEN;
 
 	// Service creation
-	for (size_t i = 0; i < _countof(siPluginServices); i++) {
-		memcpy(pszServiceFunctionName, siPluginServices[i].lpszName, (mir_strlen(siPluginServices[i].lpszName) + 1));
-		CreateServiceFunction(szServiceFunction, (MIRANDASERVICE)siPluginServices[i].lpFunc);
+	for (auto &it : siPluginServices) {
+		memcpy(pszServiceFunctionName, it.lpszName, (mir_strlen(it.lpszName) + 1));
+		CreateServiceFunction(szServiceFunction, (MIRANDASERVICE)it.lpFunc);
 	}
 	return 0;
 }
-- 
cgit v1.2.3