kcat / alure

Alure is a utility library for OpenAL, providing a C++ API and managing common tasks that include file loading, caching, and streaming
zlib License
70 stars 20 forks source link

C++14 only? #9

Closed soulslicer closed 4 years ago

soulslicer commented 6 years ago

Does this only support compilers which support c++14?

kcat commented 6 years ago

It should only require C++11. Are you getting an error? What compiler and compiler version?

McSinyx commented 4 years ago

I saw 50f92fe528e77da82197fd947d1cf9b0a82a0c7d made the requirements to C++14, but the current codebase does not use any C++14 feature I think. Is there a future plan to, say, use remove_reference_t and enable_if_t instead of the aliases in alure2-aliases.h?

kcat commented 4 years ago

I more did that just so I (and any future contributor) knows C++14 is fine now. Not sure when I'll get around to doing anything with it, but it's okay to use.