You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
folly::init was deprecated recently and now throws a warning. In many places the use was corrected in #7700 but it caused issues with the fuzzer tests (see PR).
The text was updated successfully, but these errors were encountered:
folly::Init{&argc, &argv, true}; is causing the Init object to be destroyed immediately and not at the end of main. That is why we are seeing issues with benchmark and fuzzer.
Looking at the RAII folly change here facebook/folly@7bf1486#diff-fe24748541a4b73975e31bb08821bb15c783ecdd74e2057d256c4cd1b893ba92 folly::init(&argc, &argv); is deprecated and the RAII version is folly::Init init(&argc, &argv);
The latter does call the RAII API.
Description
folly::init
was deprecated recently and now throws a warning. In many places the use was corrected in #7700 but it caused issues with the fuzzer tests (see PR).The text was updated successfully, but these errors were encountered: