blob: aa761a85f1f844b73e6b3fa06995e08f58f7e20a [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 {
10 using facebook::thrift::ThriftDebugString;
11 return ThriftDebugString(*this) < ThriftDebugString(other);
12}
13
14}}