summaryrefslogtreecommitdiffstats
path: root/src/layers.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-17 17:03:00 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-04 16:53:57 +0200
commit42f7dfd87b7192ecd326598d627e32a5feddf43b (patch)
tree1facf57655ba9476eaae9db343ca727920b9e7bc /src/layers.hpp
parent6a4504b1fe5e17a09a019edf0377646cc5dd72aa (diff)
clang-format
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/layers.hpp')
-rw-r--r--src/layers.hpp14
1 files changed, 6 insertions, 8 deletions
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<int> get_layer_id(int surface_id);
optional<int> get_layer_id(std::string const &role);
optional<struct layer> 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<struct layer>(*i);
}