~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/algorithm/crc32.cc

  • Committer: Brian Aker
  • Date: 2010-01-12 21:04:27 UTC
  • mfrom: (1259.6.3 hash_algorithm)
  • Revision ID: brian@gaz-20100112210427-ynafptc9b1jnv4d3
Merge Joe

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/crc32.h"
 
35
#include "drizzled/algorithm/crc32.h"
36
36
 
37
37
namespace drizzled
38
38
{
39
 
namespace hash
 
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 */
 
120
} /* namespace algorithm */
121
121
} /* namespace drizzled */