xsco / libdjinterop

C++ library for access to DJ record libraries
GNU Lesser General Public License v3.0
49 stars 8 forks source link

Replace `djinterop::stdx::optional` with `std::optional` #92

Closed mr-smidge closed 6 months ago

mr-smidge commented 1 year ago

The library implements a wraparound djinterop::stdx::optional, which is aliased either to std::experimental::optional or std::optional, depending on what is available.

However, it is suggested that std::optional should be available in all modern compiler suites, and hence this level of indirection can be removed.

mr-smidge commented 6 months ago

Resolved by #121