~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/uint.h

  • Committer: Brian Aker
  • Date: 2009-05-30 22:30:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1045.
  • Revision ID: brian@gaz-20090530223005-hmylm6iywddfentm
A lot of little cleanups (most based off lcov)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/item/int.h>
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_uint :public Item_int
29
26
{
30
27
public:
41
38
  uint32_t decimal_precision() const { return max_length; }
42
39
};
43
40
 
44
 
} /* namespace drizzled */
45
 
 
46
41
#endif /* DRIZZLED_ITEM_UINT_H */