Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

19 lines
380 B
C++

// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details.
#pragma once
#include <hilti/rt/result.h>
namespace hilti {
namespace result {
using Error = hilti::rt::result::Error;
using NoResult = hilti::rt::result::NoResult;
} // namespace result
template<typename T>
using Result = hilti::rt::Result<T>;
using Nothing = hilti::rt::Nothing;
} // namespace hilti