Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ali Beyad <abeyad@google.com>
  • Loading branch information
abeyad committed May 6, 2024
1 parent 31e7f02 commit e977a1c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mobile/test/performance/test_binary_size.cc
Expand Up @@ -5,4 +5,7 @@
// This binary is used to perform stripped down binary size investigations of the Envoy codebase.
// Please refer to the development docs for more information:
// https://envoymobile.io/docs/envoy-mobile/latest/development/performance/binary_size.html
int main() { return reinterpret_cast<Envoy::InternalEngine*>(0)->run(nullptr, nullptr); }
int main() {
auto options = std::make_shared<Envoy::OptionsImplBase>();
return reinterpret_cast<Envoy::InternalEngine*>(0)->run(std::move(options));
}

0 comments on commit e977a1c

Please sign in to comment.