Commit 7972f663 authored by Davis King's avatar Davis King

fixed uninitialized variable.

parent 1a868800
......@@ -57,13 +57,13 @@ namespace dlib
class fc_
{
public:
fc_() : num_outputs(1)
fc_() : num_outputs(1), num_inputs(0)
{
}
explicit fc_(
unsigned long num_outputs_
) : num_outputs(num_outputs_)
) : num_outputs(num_outputs_), num_inputs(0)
{
}
......
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