From 2fdb8a1cc86da622864e8dcfe6ea550cb342b2b0 Mon Sep 17 00:00:00 2001 From: Vern Paxson Date: Mon, 26 Apr 2021 13:09:48 -0700 Subject: [PATCH] whoops removed a std:: from generated code --- src/script_opt/CPP/Attrs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script_opt/CPP/Attrs.cc b/src/script_opt/CPP/Attrs.cc index a670fcfe75..5412daf813 100644 --- a/src/script_opt/CPP/Attrs.cc +++ b/src/script_opt/CPP/Attrs.cc @@ -82,7 +82,7 @@ void CPPCompile::GenAttrs(const AttributesPtr& attrs) StartBlock(); const auto& avec = attrs->GetAttrs(); - Emit("auto attrs = vector();"); + Emit("auto attrs = std::vector();"); AddInit(attrs);