Files
circular_buffer/test/cmake_install_test/main.cpp
2026-02-03 14:22:08 +02:00

12 lines
254 B
C++

// Copyright 2026 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/circular_buffer.hpp>
int main()
{
boost::circular_buffer<int> cb;
return cb.empty()? 0: 1;
}