bplevin36 / syncbuf

A small library of append-only, thread-safe, lock-free data structures.
MIT License
5 stars 2 forks source link

Use Default instead of new() #1

Closed bestouff closed 5 months ago

bestouff commented 3 years ago

Would it be possible to impl Default instead of implementing a plain new() ? That would enable to use a Synclist in a struct which needs Default derived.

bestouff commented 3 years ago

(see PR at #2)