mirror of
https://github.com/boostorg/circular_buffer.git
synced 2026-02-09 11:02:30 +00:00
12 lines
254 B
C++
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;
|
|
}
|