~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <math.h>
22
22
#include <drizzled/function/math/atan.h>
23
23
 
 
24
namespace drizzled
 
25
{
24
26
 
25
27
double Item_func_atan::val_real()
26
28
{
38
40
  return atan(value);
39
41
}
40
42
 
 
43
} /* namespace drizzled */