~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/string.h

  • Committer: Brian Aker
  • Date: 2010-07-28 23:07:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: brian@gaz-20100728230742-idji8pjd3trphd1a
Fix up a few additional cases around case insensitive usage for
unordered_map. This also places the code in util/string.h behind an
additional namespace of "util"

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
namespace drizzled
44
44
{
45
45
 
 
46
namespace util
 
47
{
 
48
 
46
49
struct insensitive_equal_to : std::binary_function<std::string, std::string, bool>
47
50
{
48
51
  bool operator()(std::string const& x, std::string const& y) const
67
70
  }
68
71
};
69
72
 
 
73
} /* namespace util */
70
74
} /* namespace drizzled */
71
75
 
72
76
#endif /* DRIZZLED_UTIL_STRING_H */