mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
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)
11 lines
357 B
C
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
|