skysafe / gr-sigmf

GNURadio blocks to read, write, and modify SigMF datasets
Other
30 stars 11 forks source link

Fix type for timestamp constructor for compatibility with Boost >= 1.67 #30

Closed docprofsky closed 5 years ago

docprofsky commented 5 years ago

Boost versions 1.67 and later require an integral type for the value of the subsecond duration. This adds a call to boost::numeric_cast<uint64_t> to make this work with newer versions of Boost.

storborg commented 5 years ago

Looks good, thank you.