Skip to content
Snippets Groups Projects
Commit 846126ca authored by Jory Lafaye's avatar Jory Lafaye
Browse files

m_Degree must be initialize in the constructor

parent acd8af80
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,7 @@ Polynome::Polynome(int Degree)
{
m_Coefficients.clear();
m_Coefficients.resize(Degree+1);
m_Degree = Degree;
}
Polynome::~Polynome()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment