File: common.hpp

package info (click to toggle)
babeltrace2 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,660 kB
  • sloc: cpp: 106,162; ansic: 78,276; python: 27,115; sh: 9,053; makefile: 1,807; xml: 46
file content (22 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * SPDX-License-Identifier: GPL-2.0-only
 *
 * Copyright (C) 2024 EfficiOS Inc.
 */

#ifndef BABELTRACE_TESTS_UTILS_COMMON_HPP
#define BABELTRACE_TESTS_UTILS_COMMON_HPP

#include <cstdint>

#include <babeltrace2/babeltrace.h>

template <typename FuncT>
void forEachMipVersion(FuncT&& func)
{
    for (std::uint64_t v = 0; v <= bt_get_maximal_mip_version(); ++v) {
        func(v);
    }
}

#endif /* BABELTRACE_TESTS_UTILS_COMMON_HPP */