Superficial changes to script-opt related code

* Rename overly generic ACCESSORS macro with ZEEK_ prefix
* A few places where whitespace was noticeably wrong/distracting
* Minor/obvious reference/move semantics improvements suggested by linter
* Remove unused detail::Scope::Remove(), no need for deprecation
This commit is contained in:
Jon Siwek 2020-12-13 10:33:28 -08:00
parent ff7d9e3d72
commit 481d989495
9 changed files with 23 additions and 46 deletions

View file

@ -34,9 +34,9 @@ class FuncInfo {
public:
FuncInfo(ScriptFuncPtr _func, ScopePtr _scope, StmtPtr _body)
{
func = _func;
scope = _scope;
body = _body;
func = std::move(_func);
scope = std::move(_scope);
body = std::move(_body);
}
~FuncInfo();