blob: 6a56d315127067dbcaca750992abc41b46d01458 [file] [log] [blame]
David Reissc04452e2009-01-29 23:46:46 +00001// Extra functions required for ThriftTest_types to work
2
3#include <protocol/TDebugProtocol.h>
4#include "gen-cpp/ThriftTest_types.h"
5
6
7namespace thrift { namespace test {
8
9bool Insanity::operator<(thrift::test::Insanity const& other) const {
T Jake Lucianib5e62212009-01-31 22:36:20 +000010 using apache::thrift::ThriftDebugString;
David Reissc04452e2009-01-29 23:46:46 +000011 return ThriftDebugString(*this) < ThriftDebugString(other);
12}
13
14}}