summaryrefslogtreecommitdiff
path: root/src/feature_flag.hpp
blob: 09aa5b43b1f62eab6b11562605cbfa7208bc6986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "feature_flag_set.hpp"
#include <boost/preprocessor/cat.hpp>

//
// Define flag set for each flag.
//
#define FF(tier, index, name) \
   DECLARE_FLAG(feature_flag_set, BOOST_PP_CAT(FF_,name), tier, index)
#include "feature_flag_list.hpp"
#undef FF