Skip to content

Commit

Permalink
Added FIXME and fixed StringFeatures compile bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Jun 29, 2011
1 parent b803c05 commit cc04bff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/libshogun/features/StringFeatures.h
Expand Up @@ -1656,7 +1656,8 @@ template <class ST> class CStringFeatures : public CFeatures
*/
inline bool obtain_from_char(CStringFeatures<char>* sf, int32_t start, int32_t p_order, int32_t gap, bool rev)
{
if (m_subset || sf->m_subset)
// FIXME
if (m_subset) //|| sf->m_subset)
SG_NOTIMPLEMENTED;

return obtain_from_char_features(sf, start, p_order, gap, rev);
Expand All @@ -1676,7 +1677,8 @@ template <class ST> class CStringFeatures : public CFeatures
template <class CT>
bool obtain_from_char_features(CStringFeatures<CT>* sf, int32_t start, int32_t p_order, int32_t gap, bool rev)
{
if (m_subset || sf->m_subset)
//FIXME
if (m_subset)// || sf->m_subset)
SG_NOTIMPLEMENTED;

ASSERT(sf);
Expand Down

0 comments on commit cc04bff

Please sign in to comment.