|
From: Foster B. <fos...@us...> - 2006-02-23 23:29:31
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/future In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25760/adobe/future Modified Files: timer.hpp Log Message: the state of things. We've been working to isolate static_text_t (now called label_t) but it has been slow going because we're trying to wrestle with perfecting the API and what effect that has on other components that were using label_t in a way that isn't in accordance with the new API we're trying to write. As it stands static_disabled_text_m is broken on both platforms, but everything else should be working better. Index: timer.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/future/timer.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** timer.hpp 3 Feb 2006 18:33:36 -0000 1.8 --- timer.hpp 23 Feb 2006 23:28:55 -0000 1.9 *************** *** 345,354 **** #ifndef ADOBE_NO_DOCUMENTATION ! bool operator == (const adobe::timer_t& x, const adobe::timer_t& y) { return x.last_split() == y.last_split(); } /****************************************************************************************************/ ! bool operator < (const adobe::timer_t& x, const adobe::timer_t& y) { return x.last_split() < y.last_split(); } --- 345,354 ---- #ifndef ADOBE_NO_DOCUMENTATION ! inline bool operator == (const adobe::timer_t& x, const adobe::timer_t& y) { return x.last_split() == y.last_split(); } /****************************************************************************************************/ ! inline bool operator < (const adobe::timer_t& x, const adobe::timer_t& y) { return x.last_split() < y.last_split(); } |