From 84dfde02959cfc339dbe5c10ca39cfc41423a0ba Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 30 May 2012 16:02:45 +0000 Subject: [PATCH] Removed some utility functions that duplicate standard library functions --- include/cantera/base/ct_defs.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/include/cantera/base/ct_defs.h b/include/cantera/base/ct_defs.h index f8014d778..d2dd162da 100644 --- a/include/cantera/base/ct_defs.h +++ b/include/cantera/base/ct_defs.h @@ -173,22 +173,6 @@ const doublereal Undef = -999.1234; */ const doublereal Tiny = 1.e-20; -//! inline function to return the max value of two doubles. - /*! - * @param x double value - * @param y second double value - */ -inline doublereal fmaxx(doublereal x, doublereal y) -{ return (x > y) ? x : y; } - -//! inline function to return the min value of two doubles. -/*! - * @param x double value - * @param y second double value - */ -inline doublereal fminn(doublereal x, doublereal y) -{ return (x < y) ? x : y; } - //! Map connecting a string name with a double. /*! * This is used mostly to assign concentrations and mole fractions