X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftracegroup.cpp;h=5b59eab94e8d3c3851ebac36f9e01e795d78a707;hp=5abcc86a5ec9d3253581a6da6d2c948f95bbb8c5;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=f4e57597347e47a4ea58fbdc7b0a22e07f1c0ede diff --git a/pv/view/tracegroup.cpp b/pv/view/tracegroup.cpp index 5abcc86..5b59eab 100644 --- a/pv/view/tracegroup.cpp +++ b/pv/view/tracegroup.cpp @@ -14,13 +14,12 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include -#include +#include #include #include @@ -28,6 +27,7 @@ #include "tracegroup.hpp" +using std::any_of; using std::pair; using std::shared_ptr; using std::vector; @@ -49,7 +49,7 @@ TraceGroup::~TraceGroup() bool TraceGroup::enabled() const { - return std::any_of(child_items().begin(), child_items().end(), + return any_of(child_items().begin(), child_items().end(), [](const shared_ptr &r) { return r->enabled(); }); }