Made this object inherit from noncopyable

This commit is contained in:
Davis King 2011-10-30 14:23:44 -04:00
parent cc118abce0
commit fcfafe67a3
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ namespace dlib
template <
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:

View File

@ -18,7 +18,7 @@ namespace dlib
template <
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> > >
{