palacaze / sigslot

A simple C++14 signal-slots implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Any documentation or notees on retrofitting to C++11?

pbeeson opened this issue · comments

I have a legacy system that require C++11 or lowerbut I really really want to replace Boost.

I figured it out. Lots of removing _t on decay, conditional, etc.

Actually this doesn't really work, as the std:conditional type in C++11 does not have a subscript operator, which is used heavily in signal.hpp. Slogging through this. Any pointers would be appreciated.

I'm dumb. I got it. Just had to add the C++-14 helper utils for conditional, decay, and enable_if.