Skip to content

Commit e09d5d7

Browse files
author
Dorian Eikenberg
committed
InMemory: Code reformat
1 parent 77daf60 commit e09d5d7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

plugins/inmemoryscanner/src/lib/Config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

plugins/inmemoryscanner/test/Scanner_unittest.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)