From 83de02d08d6e4586695c3b5034385589d4c12ced Mon Sep 17 00:00:00 2001 From: Mark Langen Date: Wed, 29 Nov 2023 22:27:42 -0800 Subject: [PATCH] Revert change to bool return value. --- LEGO1/viewmanager/viewlodlist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/viewmanager/viewlodlist.h b/LEGO1/viewmanager/viewlodlist.h index 9e7c778c..12817ff9 100644 --- a/LEGO1/viewmanager/viewlodlist.h +++ b/LEGO1/viewmanager/viewlodlist.h @@ -44,7 +44,7 @@ class ViewLODList : public LODList { // ??? for now, until we have symbol management typedef const char* ROIName; struct ROINameComparator { - int operator()(const ROIName& rName1, const ROIName& rName2) const + bool operator()(const ROIName& rName1, const ROIName& rName2) const { return strcmp((const char*) rName1, (const char*) rName2) > 0; }