~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Monty Taylor
  • Date: 2010-07-31 21:37:09 UTC
  • mto: (1680.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1681.
  • Revision ID: mordred@inaugust.com-20100731213709-p2tlj3txhwdi9339
Removed our unordered wrappers. We use Boost now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "drizzled/error.h"
29
29
#include "drizzled/gettext.h"
30
30
 
31
 
#include <drizzled/unordered_map.h>
 
31
#include <boost/unordered_map.hpp>
32
32
#include <exception>
33
33
 
34
34
namespace drizzled
70
70
  ErrorMap(const ErrorMap &e);
71
71
  ErrorMap& operator=(const ErrorMap &e);
72
72
 
73
 
  typedef unordered_map<uint32_t, std::string> ErrorMessageMap;
 
73
  typedef boost::unordered_map<uint32_t, std::string> ErrorMessageMap;
74
74
  ErrorMessageMap mapping_;
75
75
};
76
76