Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Jan 23, 2024
1 parent 9246870 commit aa816b4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cpp/src/IceUtil/UUID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@
//

#include <IceUtil/UUID.h>

#include <IceUtil/Exception.h>
// On Windows, we use Windows's RPC UUID generator. On other platforms, we use a high quality random number generator
// (std::random_device) to generate "version 4" UUIDs, as described in
// http://www.ietf.org/internet-drafts/draft-mealling-uuid-urn-00.txt

#include <IceUtil/Random.h>

#ifdef _WIN32
# include <rpc.h>
#else
# include <IceUtil/Random.h>
#endif

using namespace std;
Expand Down

0 comments on commit aa816b4

Please sign in to comment.