We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb26d0d commit 4c5e78cCopy full SHA for 4c5e78c
2 files changed
plugins/inmemoryscanner/src/lib/Config.h
@@ -12,7 +12,7 @@ namespace InMemoryScanner
12
class ConfigException : public std::runtime_error
13
{
14
public:
15
- explicit ConfigException(const std::string& Message) : std::runtime_error(Message.c_str()){};
+ explicit ConfigException(const std::string& Message) : std::runtime_error(Message.c_str()) {};
16
};
17
18
class IConfig
plugins/inmemoryscanner/test/Scanner_unittest.cpp
@@ -380,7 +380,8 @@ namespace InMemoryScanner
380
"\" " + "}";
381
ON_CALL(*pluginInterface, getRunningProcesses())
382
.WillByDefault(
383
- [&processInfo]() {
+ [&processInfo]()
384
+ {
385
return std::make_unique<std::vector<std::shared_ptr<const ActiveProcessInformation>>>(1,
386
processInfo);
387
});
0 commit comments