boost_mpl 0.1.0

Boost C++ library boost_mpl packaged using Zanbil
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2024 Peter Dimov
// Distributed under the Boost Software License, Version 1.0. 
// https://www.boost.org/LICENSE_1_0.txt

#include <boost/mpl/integral_c.hpp>

enum test { zero, one };

int main()
{
    boost::mpl::integral_c<test, zero> m;
    return m.value;
}