mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
15 lines
314 B
C++
15 lines
314 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#include "zeek/BifReturnVal.h"
|
|
#include "zeek/Val.h"
|
|
|
|
namespace zeek::detail {
|
|
|
|
BifReturnVal::BifReturnVal(std::nullptr_t) noexcept
|
|
{}
|
|
|
|
BifReturnVal::BifReturnVal(Val* v) noexcept
|
|
: rval(AdoptRef{}, v)
|
|
{}
|
|
|
|
} // namespace zeek::detail
|