Browse Source

Autoformat

Jonas Pflanzer 5 years ago
parent
commit
984213290d
1 changed files with 2 additions and 5 deletions
  1. 2 5
      daemon/test/ConfigMock.cpp

+ 2 - 5
daemon/test/ConfigMock.cpp

@@ -1,12 +1,10 @@
 #include "../include/Config.h"
 
 namespace Config {
-  std::map<std::string, std::string> storage;
+std::map<std::string, std::string> storage;
 };
 
-bool Config::init(const std::string &filename) {
-  return true;
-}
+bool Config::init(const std::string &filename) { return true; }
 
 std::string Config::getValue(const std::string &key) {
   auto it = storage.find(key);
@@ -16,4 +14,3 @@ std::string Config::getValue(const std::string &key) {
 
   return "";
 }
-