Remove all fully-deprecated files

This commit is contained in:
Tim Wojtulewicz 2021-01-21 10:47:54 -07:00
parent a8d28df569
commit 7e9d89db0a
12 changed files with 5 additions and 155 deletions

View file

@ -35,7 +35,7 @@ EOF
cat >src/foo.bif <<EOF
function hello_plugin_world%(%): string
%{
return new StringVal("Hello from the plugin!");
return zeek::make_intrusive<zeek::StringVal>("Hello from the plugin!");
%}
event plugin_event%(foo: count%);
@ -44,4 +44,3 @@ EOF
cat >activate.zeek <<EOF
@load-plugin Demo::Foo
EOF