diff --git a/fml/paths.cc b/fml/paths.cc index 20c94e62f..840e21163 100644 --- a/fml/paths.cc +++ b/fml/paths.cc @@ -4,12 +4,14 @@ #include "flutter/fml/paths.h" +#include + #include "flutter/fml/build_config.h" namespace fml { namespace paths { -std::string JoinPaths(std::initializer_list components) { +std::string JoinPaths(std::initializer_list components) { std::stringstream stream; size_t i = 0; const size_t size = components.size(); diff --git a/fml/paths.h b/fml/paths.h index 0d4367654..4e26ff818 100644 --- a/fml/paths.h +++ b/fml/paths.h @@ -8,14 +8,12 @@ #include #include -#include "lib/fxl/strings/string_view.h" - namespace fml { namespace paths { std::pair GetExecutableDirectoryPath(); -std::string JoinPaths(std::initializer_list components); +std::string JoinPaths(std::initializer_list components); } // namespace paths } // namespace fml