~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/round.cc

  • Committer: Jay Pipes
  • Date: 2009-09-21 14:33:44 UTC
  • mfrom: (1126.10.26 dtrace-probes)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: jpipes@serialcoder-20090921143344-jnarp7gcn6zmg19c
Merge fixes from Trond and Padraig on dtrace probes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
21
 
 
22
 
#include <math.h>
23
 
#include <limits.h>
 
20
#include <drizzled/server_includes.h>
 
21
#include <drizzled/function/math/round.h>
24
22
 
25
23
#include <limits>
26
24
#include <algorithm>
27
25
 
28
 
#include "drizzled/function/math/round.h"
29
 
 
30
 
namespace drizzled
31
 
{
32
 
 
33
 
extern const double log_10[309];
34
 
 
35
 
 
36
26
using namespace std;
37
27
 
38
28
void Item_func_round::fix_length_and_dec()
231
221
  return 0;
232
222
}
233
223
 
234
 
} /* namespace drizzled */