mirror of
https://github.com/boostorg/flyweight.git
synced 2026-01-19 04:12:09 +00:00
* added concurrent_factory * fixed friend declaration * avoided static constexpr definition fiasco * prevented spurious instantiations of concurrent_factory with placeholder params * worked around spurious std::hash instantiation in msvc 14.0 * extended previous workaround * refactored to ensure synced key_value construction with concurrent_factory, plus fixed concurrent_factory_detail::refcounted_entry move ctor
12 lines
353 B
C++
12 lines
353 B
C++
/* Boost.Flyweight test of concurrent_factory.
|
|
*
|
|
* Copyright 2024 Joaquin M Lopez Munoz.
|
|
* 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)
|
|
*
|
|
* See http://www.boost.org/libs/flyweight for library home page.
|
|
*/
|
|
|
|
void test_concurrent_factory();
|