diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2016-03-03 17:01:43 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2016-03-03 17:01:43 -0300 |
commit | 45d371f4ec334f5a7d16c8b40deb8dce24fc8e55 (patch) | |
tree | 14b81e7807999a9400f2c254dca0d87cf16e556d | |
parent | 2ae04662b85d4898fe7069ed18cce2dd7abc45ad (diff) |
ProjectionHistory: fixed minor compiler warning.
-rw-r--r-- | projectionhistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projectionhistory.cpp b/projectionhistory.cpp index 30c6b76..55d9f60 100644 --- a/projectionhistory.cpp +++ b/projectionhistory.cpp @@ -17,8 +17,8 @@ ProjectionHistory::ProjectionHistory(const arma::mat &X, , m_cpSelectionEmpty(true) , m_rpSelectionEmpty(true) , m_values(X.n_rows) - , m_prevValues(X.n_rows) , m_firstValues(X.n_rows) + , m_prevValues(X.n_rows) , m_hasFirst(false) , m_hasPrev(false) { |