mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
12 lines
248 B
C++
12 lines
248 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#pragma once
|
|
|
|
#include <span>
|
|
|
|
namespace zeek {
|
|
|
|
template<class T>
|
|
using Span [[deprecated("Remove in v8.1: Use std::span instead")]] = std::span<T>;
|
|
|
|
} // namespace zeek
|