-
Notifications
You must be signed in to change notification settings - Fork 97
Open
Description
Hi,
thanks for this lib.
Signature of getTimeStamp(struct timeval *tv, int secFracDigits)
should be
getTimeStamp(const struct timeval *tv, int secFracDigits)
, so we don't have to cast away the const when using this func externally.
Or even better, consider using references to match the general C++ style:
getTimeStamp(const struct timeval &tv, int secFracDigits)
Metadata
Metadata
Assignees
Labels
No labels