mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
b5e6221eb5
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@739644 13f79535-47bb-0310-9956-ffa450edef68
15 lines
353 B
C++
15 lines
353 B
C++
// Extra functions required for ThriftTest_types to work
|
|
|
|
#include <protocol/TDebugProtocol.h>
|
|
#include "gen-cpp/ThriftTest_types.h"
|
|
|
|
|
|
namespace thrift { namespace test {
|
|
|
|
bool Insanity::operator<(thrift::test::Insanity const& other) const {
|
|
using apache::thrift::ThriftDebugString;
|
|
return ThriftDebugString(*this) < ThriftDebugString(other);
|
|
}
|
|
|
|
}}
|