X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fview.cpp;h=8922922aa1c1e939f747b15327545acc84c6379e;hb=e4cc0ee6270eb4d388a169438f58aa481f705261;hp=af15f1e49105f522e4eae124c9182623553c538b;hpb=57c04e781e96020c7185d7b6e634629007497227;p=pulseview.git diff --git a/pv/views/trace/view.cpp b/pv/views/trace/view.cpp index af15f1e..8922922 100644 --- a/pv/views/trace/view.cpp +++ b/pv/views/trace/view.cpp @@ -79,7 +79,6 @@ using std::make_pair; using std::make_shared; using std::min; using std::pair; -using std::placeholders::_1; using std::set; using std::set_difference; using std::shared_ptr; @@ -953,7 +952,7 @@ void View::calculate_tick_spacing() (ScaleUnits[unit++] + tp_margin); } while (tp_with_margin < min_period && unit < countof(ScaleUnits)); - minor_tick_count_ = (unit == 2) ? (4) : (5); + minor_tick_count_ = (unit == 2) ? 4 : 5; tick_period = order_decimal * ScaleUnits[unit - 1]; tick_prefix = static_cast( (order - pv::util::exponent(pv::util::SIPrefix::yocto)) / 3);