X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=sim%2Fucsim%2Fpobj.cc;h=20af199c3c449b2a8a2a8ec6c21a17e87936479e;hb=a8bed8a7dd8bd305251eefb69e5f66c35bd53112;hp=ae9e850bae0a55eca7825e6452db2c86481abba8;hpb=7ebfb4a2306b9fea07e0bd6c329d73558d63728d;p=fw%2Fsdcc diff --git a/sim/ucsim/pobj.cc b/sim/ucsim/pobj.cc index ae9e850b..20af199c 100644 --- a/sim/ucsim/pobj.cc +++ b/sim/ucsim/pobj.cc @@ -404,7 +404,7 @@ cl_list::set_limit(t_index alimit) cl_sorted_list::cl_sorted_list(t_index alimit, t_index adelta): cl_list(alimit, adelta) { - Duplicates= FALSE; + Duplicates= DD_FALSE; } @@ -474,7 +474,7 @@ cl_sorted_list::search(void *key, t_index &index) { t_index l = 0; t_index h = count - 1; - bool res= FALSE; + bool res= DD_FALSE; while (l <= h) { @@ -486,7 +486,7 @@ cl_sorted_list::search(void *key, t_index &index) h= i - 1; if (c == 0) { - res= TRUE; + res= DD_TRUE; if (!Duplicates) l= i; } @@ -511,7 +511,7 @@ cl_sorted_list::search(void *key, t_index &index) cl_strings::cl_strings(t_index alimit, t_index adelta): cl_sorted_list(alimit, adelta) { - Duplicates= TRUE; + Duplicates= DD_TRUE; } @@ -578,7 +578,7 @@ bool cl_ustrings::search(void *key, t_index& index) { t_index i = 0; - bool found= FALSE; + bool found= DD_FALSE; void *Actual; if ((count) && key)