From 51a2779fdbc4f9d94286302670bb116a1962d980 Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 18:58:25 -0500 Subject: [PATCH] Fix cpplint errors in main_delegate.cc --- brightray/common/main_delegate.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/brightray/common/main_delegate.cc b/brightray/common/main_delegate.cc index cfa4cd6759..4c903149d0 100644 --- a/brightray/common/main_delegate.cc +++ b/brightray/common/main_delegate.cc @@ -53,8 +53,10 @@ void MainDelegate::InitializeResourceBundle() { std::vector pak_paths; AddPakPaths(&pak_paths); - for (auto it = pak_paths.begin(), end = pak_paths.end(); it != end; ++it) - ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath(*it, ui::SCALE_FACTOR_NONE); + for (auto it = pak_paths.begin(), end = pak_paths.end(); it != end; ++it) { + ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath( + *it, ui::SCALE_FACTOR_NONE); + } } } // namespace brightray