2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00
Files
uuid/test/quick.cpp
2025-08-09 20:28:38 +02:00

16 lines
310 B
C++

// Copyright 2024 Peter Dimov.
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/uuid.hpp>
int main()
{
boost::uuids::random_generator gen;
boost::uuids::uuid u1 = gen();
boost::uuids::uuid u2 = gen();
return u1 == u2;
}