X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FLogger%2FTarget.cci;h=374aab53378fcd8f787bf75e32a8f47862894371;hb=9cb871b939efe93e35dd96808d25089399acfc46;hp=7e02f9103d575816da3a879b7eabc85978d29953;hpb=3a43b572a2c0028b353d47e86fa7546633d6e2cf;p=senf.git diff --git a/senf/Utils/Logger/Target.cci b/senf/Utils/Logger/Target.cci index 7e02f91..374aab5 100644 --- a/senf/Utils/Logger/Target.cci +++ b/senf/Utils/Logger/Target.cci @@ -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()