On Sun, Sep 02, 2007 at 12:08:59AM +0000, Markus Gothe wrote:
> +inline float fmax(float a, float b) { if (a < b) return b; else return a; }
> +inline float fmin(float a, float b) { if (a < b) return a; else return b; }ISO C++ has std::min and std::max as template methods. Unit testing ? --strk; _______________________________________________ Gnash-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnash-commit
