소스 검색

Autoformat

Jonas Pflanzer 5 년 전
부모
커밋
984213290d
1개의 변경된 파일2개의 추가작업 그리고 5개의 파일을 삭제
  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 "";
 }
-