dbms: fixed incompatibility with newer version of boost.

This commit is contained in:
Alexey Milovidov 2010-03-16 13:54:28 +00:00
parent a39c9a9083
commit 2c644482db

View File

@ -29,13 +29,6 @@ typedef boost::make_recursive_variant<
typedef std::vector<Field> Array; /// Значение типа "массив"
/// почему-то у boost::variant определены операторы < и ==, но не остальные операторы сравнения
inline bool operator!= (const Field & lhs, const Field & rhs) { return !(lhs == rhs); }
inline bool operator<= (const Field & lhs, const Field & rhs) { return lhs < rhs || lhs == rhs; }
inline bool operator>= (const Field & lhs, const Field & rhs) { return !(lhs < rhs); }
inline bool operator> (const Field & lhs, const Field & rhs) { return !(lhs < rhs) && !(lhs == rhs); }
/** Числовое значение конкретного типа Field */
namespace FieldType
{