Commits


Ryan A. Pavlik authored and GitHub committed e738d60cf10
Put unmovable state into a unique_ptr-managed struct. (#78) Got warnings on GCC/Clang about explicitly-defaulted move constructors/assignments implicitly deleted because std::mutex and std::condition_variable are not movable. This puts them into a heap allocation whose ownership can be moved.