mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Run clang-format on all of our plugin test c++ files
This commit is contained in:
parent
b59bfe5558
commit
dc65b6248c
29 changed files with 400 additions and 336 deletions
|
@ -1,7 +1,10 @@
|
|||
|
||||
#include "Plugin.h"
|
||||
|
||||
namespace btest::plugin::Testing_Plugin1 { Plugin plugin; }
|
||||
namespace btest::plugin::Testing_Plugin1
|
||||
{
|
||||
Plugin plugin;
|
||||
}
|
||||
|
||||
using namespace btest::plugin::Testing_Plugin1;
|
||||
|
||||
|
|
|
@ -1,13 +1,17 @@
|
|||
|
||||
#include "Plugin.h"
|
||||
|
||||
namespace btest::plugin::Testing_Plugin2 { Plugin plugin; }
|
||||
namespace btest::plugin::Testing_Plugin2
|
||||
{
|
||||
Plugin plugin;
|
||||
}
|
||||
|
||||
using namespace btest::plugin::Testing_Plugin2;
|
||||
|
||||
void Plugin2_foo() {
|
||||
printf("in Plugin2\n");
|
||||
}
|
||||
void Plugin2_foo()
|
||||
{
|
||||
printf("in Plugin2\n");
|
||||
}
|
||||
|
||||
zeek::plugin::Configuration Plugin::Configure()
|
||||
{
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
|
||||
#include "Plugin.h"
|
||||
|
||||
namespace btest::plugin::Testing_Plugin3 { Plugin plugin; }
|
||||
namespace btest::plugin::Testing_Plugin3
|
||||
{
|
||||
Plugin plugin;
|
||||
}
|
||||
|
||||
using namespace btest::plugin::Testing_Plugin3;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue