Skip to content

Commit

Permalink
Merge pull request libfann#12 from xiadz/master
Browse files Browse the repository at this point in the history
Fixing FANN::neural_net copy constructor
  • Loading branch information
steffennissen committed Aug 16, 2014
2 parents 93379ef + 9e1f76c commit e8e3abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/fann_cpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ namespace FANN
See also:
<copy_from_struct_fann>
*/
neural_net(const neural_net& other)
neural_net(const neural_net& other) : ann(NULL)
{
copy_from_struct_fann(other.ann);
}
Expand Down

0 comments on commit e8e3abb

Please sign in to comment.