Copyright Matus Chochlik. Distributed under the Boost Software License, Version 1.0. See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
#include <iostream>
std::cout << id.name() << ':' << std::endl;
std::cout << " size: " << id.size() << std::endl;
std::cout << " max_size: " << id.max_size() << std::endl;
std::cout << " sizeof: " << sizeof(id) << std::endl;
std::cout << " value: " << id.value() << std::endl;
}
#if EAGINE_HAS_LONG_ID
std::cout << id.name() << ':' << std::endl;
std::cout << " size: " << id.size() << std::endl;
std::cout << " max_size: " << id.max_size() << std::endl;
std::cout << " sizeof: " << sizeof(id) << std::endl;
}
#endif
auto main() -> int {
#if EAGINE_HAS_LONG_ID
#endif
return 0;
}
#define EAGINE_LONG_ID(NAME)
Macro for constructing instances of eagine::long_identifier.
Definition: identifier.hpp:393