Browse Source

Return a default constructed vector from Configurator::UpdateUrl

Certain toolchains require a constructor to create the vector.
implicitfield 1 year ago
parent
commit
37e8fb518b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      patches/core/inox-patchset/0015-disable-update-pings.patch

+ 1 - 1
patches/core/inox-patchset/0015-disable-update-pings.patch

@@ -5,7 +5,7 @@
  
  std::vector<GURL> Configurator::UpdateUrl() const {
 -  return external_constants_->UpdateURL();
-+  return std::vector<GURL>;
++  return std::vector<GURL>();
  }
  
  std::vector<GURL> Configurator::PingUrl() const {