MCPcopy Create free account
hub / github.com/boostorg/hana / main

Function main

example/map/comparable.cpp:16–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14
15
16int main() {
17 BOOST_HANA_RUNTIME_CHECK(
18 hana::make_map(
19 hana::make_pair(hana::char_c<'a'>, "foobar"s),
20 hana::make_pair(hana::type_c<int&&>, nullptr)
21 )
22 ==
23 hana::make_map(
24 hana::make_pair(hana::type_c<int&&>, (void*)0),
25 hana::make_pair(hana::char_c<'a'>, "foobar"s)
26 )
27 );
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected