mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 00:58:19 +00:00
Remove all of the random single-file deprecations
These are the changes that don't require a ton of changes to other files outside of the original removal.
This commit is contained in:
parent
7e9d89db0a
commit
0618be792f
270 changed files with 36 additions and 4632 deletions
19
src/Obj.h
19
src/Obj.h
|
@ -194,22 +194,3 @@ inline void Unref(Obj* o)
|
|||
extern void obj_delete_func(void* v);
|
||||
|
||||
} // namespace zeek
|
||||
|
||||
using Location [[deprecated("Remove in v4.1. Use zeek::detail::Location instead.")]] = zeek::detail::Location;
|
||||
using yyltype [[deprecated("Remove in v4.1. Use zeek::detail::yyltype instead.")]] = zeek::detail::yyltype;
|
||||
using BroObj [[deprecated("Remove in v4.1. Use zeek::Obj instead.")]] = zeek::Obj;
|
||||
|
||||
[[deprecated("Remove in v4.1. Use zeek::Obj::Print instead.")]]
|
||||
extern void print(const zeek::Obj* obj);
|
||||
|
||||
[[deprecated("Remove in v4.1. Use zeek::detail::set_location instead.")]]
|
||||
inline void set_location(const zeek::detail::Location loc)
|
||||
{
|
||||
zeek::detail::set_location(loc);
|
||||
}
|
||||
|
||||
[[deprecated("Remove in v4.1. Use zeek::detail::set_location instead.")]]
|
||||
inline void set_location(const zeek::detail::Location start, const zeek::detail::Location end)
|
||||
{
|
||||
zeek::detail::set_location(start, end);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue