Commit 2c97b411 authored by Davis King's avatar Davis King

Removed some unneeded mutable qualifiers.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403434
parent 031e5af3
......@@ -356,8 +356,8 @@ namespace dlib
scalar_type bias;
const decision_function<kernel_type>& dec_funct;
mutable matrix<scalar_type,0,1,mem_manager_type>& b;
mutable matrix<sample_type,0,1,mem_manager_type>& out_vectors;
matrix<scalar_type,0,1,mem_manager_type>& b;
matrix<sample_type,0,1,mem_manager_type>& out_vectors;
};
......@@ -475,8 +475,8 @@ namespace dlib
mutable sample_type temp;
const decision_function<kernel_type>& dec_funct;
mutable matrix<scalar_type,0,1,mem_manager_type>& b;
mutable matrix<sample_type,0,1,mem_manager_type>& out_vectors;
matrix<scalar_type,0,1,mem_manager_type>& b;
matrix<sample_type,0,1,mem_manager_type>& out_vectors;
};
......
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