主页 > 运维运营 > Linux常见 >
发布时间:2015-06-25 作者:网络 阅读:320次
如果编译安装Coreseek/Sphinx时通不过,根据下面对源码进行修改

coreseek-3.2.14/csft-3.2.14/src/sphinxexpr.cpp 文件
搜索
     /// evaluate arg, return interval id
     virtual int IntEval ( const CSphMatch & tMatch ) const
     {
-        T val = ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
+        T val = this->ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
         ARRAY_FOREACH ( i, this->m_dValues ) // FIXME! OPTIMIZE! perform binary search here
             if ( val<this->m_dValues[i] )
                 return i;

     /// evaluate arg, return interval id
     virtual int IntEval ( const CSphMatch & tMatch ) const
     {
-        T val = ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
+        T val = this->ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
         ARRAY_FOREACH ( i, m_dTurnPoints )
             if ( val < Expr_ArgVsSet_c<T>::ExprEval ( m_dTurnPoints[i], tMatch ) )
                 return i;

     /// evaluate arg, check if the value is within set
     virtual int IntEval ( const CSphMatch & tMatch ) const
     {
-        T val = ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
+        T val = this->ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
         return this->m_dValues.BinarySearch ( val )!=NULL;
     }

Coreseek-4.1/csft-4.1-beta/src/sphinxexpr.cpp 文件
搜索
     /// evaluate arg, return interval id
     virtual int IntEval ( const CSphMatch & tMatch ) const
     {
-        T val = ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
+        T val = this->ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
         ARRAY_FOREACH ( i, this->m_dValues ) // FIXME! OPTIMIZE! perform binary search here
             if ( val<this->m_dValues[i] )
                 return i;

     /// evaluate arg, return interval id
     virtual int IntEval ( const CSphMatch & tMatch ) const
     {
-        T val = ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
+        T val = this->ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
         ARRAY_FOREACH ( i, m_dTurnPoints )
             if ( val < Expr_ArgVsSet_c<T>::ExprEval ( m_dTurnPoints[i], tMatch ) )
                 return i;

     /// evaluate arg, check if the value is within set
     virtual int IntEval ( const CSphMatch & tMatch ) const
     {
-        T val = ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
+        T val = this->ExprEval ( this->m_pArg, tMatch ); // 'this' fixes gcc braindamage
         return this->m_dValues.BinarySearch ( val )!=NULL;
     }
关键字词:

相关文章