~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/algorithm/crc32.cc

  • Committer: Joe Daly
  • Date: 2010-01-06 02:20:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1267.
  • Revision ID: skinny.moey@gmail.com-20100106022042-8ov23wc4aq8f9k7d
rename hash_algorithm to algorithm

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 */
33
33
 
34
34
#include "config.h"
35
 
#include "drizzled/hash_algorithm/crc32.h"
 
35
#include "drizzled/algorithm/crc32.h"
36
36
 
37
37
namespace drizzled
38
38
{
39
 
namespace hash_algorithm
 
39
namespace algorithm
40
40
{
41
41
 
42
42
static const uint32_t crc32tab[256] = {
117
117
  return ~crc;
118
118
}
119
119
 
120
 
} /* namespace hash_algorithm */
 
120
} /* namespace algorithm */
121
121
} /* namespace drizzled */