Run astyle

Change-Id: Iba20bab3093f15339760d4f782cc6d6e89156ab0
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/sensorset.cpp b/sensorset.cpp
index 9c4a89c..708e3a5 100644
--- a/sensorset.cpp
+++ b/sensorset.cpp
@@ -29,13 +29,16 @@
     Directory d(path);
     std::string file;
 
-    while(d.next(file))
+    while (d.next(file))
     {
         std::smatch match;
         std::regex_search(file, match, sensors_regex);
 
-        if (match.size() != sensor_regex_match_count) continue;
+        if (match.size() != sensor_regex_match_count)
+        {
+            continue;
+        }
 
-        container[make_pair(match[1],match[2])].emplace(match[3]);
+        container[make_pair(match[1], match[2])].emplace(match[3]);
     }
 }