X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Ftracegroup.cpp;h=265bc27547c6c525607860a79707509ae12d490f;hb=aca9aa834c742ba70f49d1ac3eb2d1e02e759416;hp=5abcc86a5ec9d3253581a6da6d2c948f95bbb8c5;hpb=f4e57597347e47a4ea58fbdc7b0a22e07f1c0ede;p=pulseview.git diff --git a/pv/view/tracegroup.cpp b/pv/view/tracegroup.cpp index 5abcc86..265bc27 100644 --- a/pv/view/tracegroup.cpp +++ b/pv/view/tracegroup.cpp @@ -14,20 +14,20 @@ * 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 #include #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(); }); }