Skip to content

Commit

Permalink
fix compile csharp errors
Browse files Browse the repository at this point in the history
- made read_vector* variables protected such that there is no get_/set_
naming clash
- use same signature for get_num_vectors() in attributefeatures to fix warning
  • Loading branch information
Soeren Sonnenburg committed Jul 29, 2011
1 parent 89bf991 commit 2d44753
Show file tree
Hide file tree
Showing 2 changed files with 523 additions and 531 deletions.
2 changes: 1 addition & 1 deletion src/shogun/features/AttributeFeatures.h
Expand Up @@ -168,7 +168,7 @@ class CAttributeFeatures : public CFeatures
*
* @return number of examples/vectors
*/
virtual int32_t get_num_vectors()=0 ;
virtual int32_t get_num_vectors() const=0 ;

/** get memory footprint of one feature
*
Expand Down

0 comments on commit 2d44753

Please sign in to comment.