From cdccc5e92fc012de292364f8f9ded7e185dbe9cb Mon Sep 17 00:00:00 2001 From: Robert Bassett Date: Fri, 21 Dec 2018 14:58:30 -0800 Subject: [PATCH] Update graphlet_utils.cpp fixed compilation error: https://github.com/nkahmed/PGD/issues/5 --- graphlet_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphlet_utils.cpp b/graphlet_utils.cpp index f7c59c9..e3aa190 100755 --- a/graphlet_utils.cpp +++ b/graphlet_utils.cpp @@ -39,7 +39,7 @@ bool fexists(const char *filename) { #ifdef WIN32 return ifile!=0; #else - return ifile; + return (bool)ifile; #endif }