]> sigrok.org Git - pulseview.git/blobdiff - pv/view/tracegroup.cpp
Random simplifications, cosmetics/whitespace/consistency fixes.
[pulseview.git] / pv / view / tracegroup.cpp
index 5abcc86a5ec9d3253581a6da6d2c948f95bbb8c5..5b59eab94e8d3c3851ebac36f9e01e795d78a707 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
  */
 
 #include <extdef.h>
-#include <assert.h>
 
+#include <cassert>
 #include <algorithm>
 
 #include <QMenu>
@@ -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<ViewItem> &r) { return r->enabled(); });
 }