Whitespce cleanup: Remove whitespace at end-on-line, remove tabs, wrap
[senf.git] / senf / Utils / Logger / Target.cci
index 7e02f91..374aab5 100644 (file)
@@ -80,21 +80,21 @@ prefix_ bool senf::log::Target::empty()
 prefix_ senf::log::Target::RoutingEntry::RoutingEntry(detail::StreamBase const * stream,
                                                       detail::AreaBase const * area,
                                                       unsigned level, action_t action)
-    : stream_(stream), area_(area), level_(level), action_(action) 
+    : stream_(stream), area_(area), level_(level), action_(action)
 {}
 
 prefix_ senf::log::Target::RoutingEntry::RoutingEntry()
-    : stream_(0), area_(0), level_(0), action_(ACCEPT) 
+    : stream_(0), area_(0), level_(0), action_(ACCEPT)
 {}
 
 prefix_ bool senf::log::Target::RoutingEntry::operator==(RoutingEntry const & other)
     const
-{ 
-    return 
-        stream_ == other.stream_ && 
-        area_ == other.area_ && 
+{
+    return
+        stream_ == other.stream_ &&
+        area_ == other.area_ &&
         level_ == other.level_ &&
-        action_ == other.action_; 
+        action_ == other.action_;
 }
 
 prefix_ std::string senf::log::Target::RoutingEntry::stream()