From 42f7dfd87b7192ecd326598d627e32a5feddf43b Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Thu, 17 Aug 2017 17:03:00 +0200 Subject: clang-format Signed-off-by: Marcus Fritzsch --- src/layers.hpp | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'src/layers.hpp') diff --git a/src/layers.hpp b/src/layers.hpp index ae609fc..a33f24a 100644 --- a/src/layers.hpp +++ b/src/layers.hpp @@ -69,21 +69,19 @@ struct layer_map { // make this the primary map, and the surface_id->layer a // secondary map. - storage_type mapping; // map surface_id to layer - layers_type layers; // the actual layer IDs we have + storage_type mapping; // map surface_id to layer + layers_type layers; // the actual layer IDs we have int main_surface; std::string main_surface_name; role_to_layer_map roles; - addsurf_layer_map surfaces; // additional surfaces on layers + addsurf_layer_map surfaces; // additional surfaces on layers optional get_layer_id(int surface_id); optional get_layer_id(std::string const &role); optional get_layer(int layer_id) { - auto i = std::find_if(std::cbegin(this->mapping), - std::cend(this->mapping), - [layer_id](struct layer const &l) { - return layer_id == l.layer_id; - }); + auto i = std::find_if( + std::cbegin(this->mapping), std::cend(this->mapping), + [layer_id](struct layer const &l) { return layer_id == l.layer_id; }); return i == this->mapping.end() ? nullopt : optional(*i); } -- cgit 1.2.3-korg