Skip to content

Commit

Permalink
Merge pull request #24246 from Dr15Jones/changeGUIDcalculation
Browse files Browse the repository at this point in the history
Change how we calculate GUID
  • Loading branch information
cmsbuild committed Aug 9, 2018
2 parents 315cc88 + 18feb1f commit 24e8155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FWCore/Utilities/src/Guid.cc
Expand Up @@ -26,7 +26,7 @@ namespace edm {
/// Initialize a new Guid
void Guid::init() {
uuid_t me_;
::uuid_generate_time(me_);
::uuid_generate_random(me_);
unsigned int* d1 = reinterpret_cast<unsigned int*>(me_);
unsigned short* d2 = reinterpret_cast<unsigned short*>(me_+4);
unsigned short* d3 = reinterpret_cast<unsigned short*>(me_+6);
Expand Down

0 comments on commit 24e8155

Please sign in to comment.