aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.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/app.hpp
parent6a4504b1fe5e17a09a019edf0377646cc5dd72aa (diff)
clang-format
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/app.hpp')
-rw-r--r--src/app.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app.hpp b/src/app.hpp
index 12d26b4..a35be27 100644
--- a/src/app.hpp
+++ b/src/app.hpp
@@ -71,7 +71,8 @@ struct id_allocator {
optional<std::string> operator[](unsigned id) {
auto i = this->surfaces.find(id);
- return i == this->surfaces.end() ? nullopt : optional<std::string>(i->second);
+ return i == this->surfaces.end() ? nullopt
+ : optional<std::string>(i->second);
}
};