Commit fcfafe67 authored by Davis King's avatar Davis King

Made this object inherit from noncopyable

parent cc118abc
...@@ -64,7 +64,7 @@ namespace dlib ...@@ -64,7 +64,7 @@ namespace dlib
template < template <
typename feature_extractor typename feature_extractor
> >
class structural_svm_sequence_labeling_problem : class structural_svm_sequence_labeling_problem : noncopyable,
public structural_svm_problem_threaded<matrix<double,0,1>, std::vector<std::pair<unsigned long,double> > > public structural_svm_problem_threaded<matrix<double,0,1>, std::vector<std::pair<unsigned long,double> > >
{ {
public: public:
......
...@@ -18,7 +18,7 @@ namespace dlib ...@@ -18,7 +18,7 @@ namespace dlib
template < template <
typename feature_extractor typename feature_extractor
> >
class structural_svm_sequence_labeling_problem : class structural_svm_sequence_labeling_problem : noncopyable,
public structural_svm_problem_threaded<matrix<double,0,1>, public structural_svm_problem_threaded<matrix<double,0,1>,
std::vector<std::pair<unsigned long,double> > > std::vector<std::pair<unsigned long,double> > >
{ {
......
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