Source code formating unification
[platform/framework/web/wrt-plugins-common.git] / src / modules / tizen / DEPRACATED / Memory / Manager.cpp
index 2bde62d..da505be 100644 (file)
@@ -45,8 +45,7 @@ unsigned long Manager::getFree() const
 }
 
 Manager::Manager()
-{
-}
+{}
 
 unsigned long Manager::getMeminfoValue(const char* pattern) const
 {
@@ -61,7 +60,8 @@ unsigned long Manager::getMeminfoValue(const char* pattern) const
     bool matched = false;
     std::string line;
     while ((std::getline(file, line).rdstate() &
-            (std::ifstream::failbit | std::ifstream::eofbit)) == 0) {
+            (std::ifstream::failbit | std::ifstream::eofbit)) == 0)
+    {
         if (pcrecpp::RE(pattern).FullMatch(line, &result)) {
             matched = true;
             break;