ports/archivers/bicom/files/patch-bialib_sufftree.h
Jan Beich b8a1188a89 archivers/bicom: unbreak with clang 4.0
In file included from bialib/sufftree.cpp:57:
./bialib/sufftree.h:98:16: error: ordered comparison between pointer and zero ('SuffixTreeModel::LNode *' and 'int')
      {return(r>0);}
              ~^~

Reported by:	antoine (via exp-run)
2017-02-01 05:28:40 +00:00

11 lines
357 B
C

--- bialib/sufftree.h.orig 2000-10-26 01:51:04 UTC
+++ bialib/sufftree.h
@@ -95,7 +95,7 @@ class SuffixTreeModel : public Arithmeti
{
public:
bool InEdge()
- {return(r>0);}
+ {return(r!=NULL);}
//After Canonize()ing a point, r >0 <=> proj!=0, i.e., point
//is inside an edge
INode *ins; //parent of point