// // Copyright (c) 2012-2019 Antony Polukhin. // // // 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) // #define TEST_LIB_SOURCE #include "test_lib_anonymous.hpp" namespace { class user_defined{}; } // anonymous namespace namespace test_lib { boost::typeindex::type_index get_anonymous_user_defined_class() { return boost::typeindex::type_id(); } boost::typeindex::type_index get_const_anonymous_user_defined_class() { return boost::typeindex::type_id_with_cvr(); } }