~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2009-12-02 06:01:21 UTC
  • mto: (1237.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: stewart@flamingspork.com-20091202060121-68gyfqifqcjcmi2v
my_end() no longer requires an argument (we removed them all)

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
 
#include <math.h>
 
20
#include <drizzled/server_includes.h>
22
21
#include <drizzled/function/math/mod.h>
23
22
 
24
23
#include <algorithm>
25
24
 
26
25
using namespace std;
27
26
 
28
 
namespace drizzled
29
 
{
30
 
 
31
27
int64_t Item_func_mod::int_op()
32
28
{
33
29
  assert(fixed == 1);
108
104
  unsigned_flag= args[0]->unsigned_flag;
109
105
}
110
106
 
111
 
} /* namespace drizzled */