~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/num1.h

  • Committer: Jay Pipes
  • Date: 2009-05-31 21:21:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1046.
  • Revision ID: jpipes@serialcoder-20090531212144-dn18058mx55azhms
Yet more indentation and style cleanup

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
 
#ifndef DRIZZLED_FUNCTIONS_NUM1_H
21
 
#define DRIZZLED_FUNCTIONS_NUM1_H
 
20
#ifndef DRIZZLED_FUNCTION_NUM1_H
 
21
#define DRIZZLED_FUNCTION_NUM1_H
22
22
 
23
 
#include <drizzled/item.h>
24
 
#include <drizzled/functions/numhybrid.h>
 
23
#include <drizzled/function/numhybrid.h>
25
24
 
26
25
/* function where type of result detected by first argument */
27
26
class Item_func_num1: public Item_func_numhybrid
32
31
 
33
32
  void fix_num_length_and_dec();
34
33
  void find_num_type();
35
 
  String *str_op(String *str __attribute__((unused)))
 
34
  String *str_op(String *)
36
35
  { assert(0); return 0; }
37
36
};
38
37
 
39
38
 
40
 
#endif /* DRIZZLED_FUNCTIONS_NUM1_H */
 
39
#endif /* DRIZZLED_FUNCTION_NUM1_H */