sraaphorst / spelunker

Maze generation and solving library
Other
11 stars 2 forks source link

Switch to smart pointers. #95

Closed sraaphorst closed 6 years ago

sraaphorst commented 6 years ago

Travis refuses to work with std::make_unique, so I have been forced to instead use std::unique_ptr explicitly, wrapping raw pointers created with new. It is most unsatisfying, but I have been struggling with this for hours now.