Files
flyweight/test/test_intermod_holder_main.cpp
2024-09-26 19:25:47 +02:00

19 lines
483 B
C++

/* Boost.Flyweight test of intermodule_holder.
*
* Copyright 2006-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.
*/
#include <boost/core/lightweight_test.hpp>
#include "test_intermod_holder.hpp"
int main()
{
test_intermodule_holder();
return boost::report_errors();
}