File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ namespace InMemoryScanner
1212 class ConfigException : public std ::runtime_error
1313 {
1414 public:
15- explicit ConfigException (const std::string& Message) : std::runtime_error(Message.c_str()){};
15+ explicit ConfigException (const std::string& Message) : std::runtime_error(Message.c_str()) {};
1616 };
1717
1818 class IConfig
Original file line number Diff line number Diff line change @@ -380,7 +380,8 @@ namespace InMemoryScanner
380380 " \" " + " }" ;
381381 ON_CALL (*pluginInterface, getRunningProcesses ())
382382 .WillByDefault (
383- [&processInfo]() {
383+ [&processInfo]()
384+ {
384385 return std::make_unique<std::vector<std::shared_ptr<const ActiveProcessInformation>>>(1 ,
385386 processInfo);
386387 });
You can’t perform that action at this time.
0 commit comments