Commit d0d9c914 authored by Patrik Huber's avatar Patrik Huber

Removed =default c'tor workaround for VS2015 in PcaModel

Hopefully this is not an issue anymore.
parent 3f0ffc18
......@@ -55,7 +55,7 @@ cv::Mat unnormalise_pca_basis(cv::Mat normalised_basis, cv::Mat eigenvalues);
class PcaModel
{
public:
PcaModel() {}; // workaround for a VS2015 RC bug. Change to '=default' in RTM.
PcaModel() = default;
/**
* Construct a PCA model from given mean, normalised PCA basis, eigenvalues
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment