Deprecate TableVal::Assign methods with Val*, add IntrusivePtr overloads

This commit is contained in:
Jon Siwek 2020-05-20 12:46:51 -07:00
parent 5bf2ed02d7
commit 7e89c8f0df
22 changed files with 106 additions and 95 deletions

View file

@ -157,7 +157,7 @@ function Reporter::get_weird_sampling_whitelist%(%): string_set
for ( auto el : reporter->GetWeirdSamplingWhitelist() )
{
auto idx = make_intrusive<StringVal>(el);
set->Assign(idx.get(), nullptr);
set->Assign(std::move(idx), nullptr);
}
return set;
%}