Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a copy constructor to InvalidSass exception
The copy constructor transfers the ownership of `owned_src` from `rhs` to `lhs`. Otherwise, `owned_src` may be destroyed too early and more than once. In the libsass codebase, this copy can only happen on `throw`. Modern compilers elide such copies. In our CI, only VS 2013 does not.
- Loading branch information