summaryrefslogtreecommitdiff
path: root/lib/cpp/test/DebugProtoTest_extras.cpp
diff options
context:
space:
mode:
authorDavid Reiss <dreiss@apache.org>2010-08-31 16:51:19 +0000
committerDavid Reiss <dreiss@apache.org>2010-08-31 16:51:19 +0000
commit351e22b52afcbe9b40e0933f80b06b479dff50f4 (patch)
treebf08ca7a10a6adca594d44ae22111008f2ccb0ee /lib/cpp/test/DebugProtoTest_extras.cpp
parentf261dd795c4004c72c7efd66c4b09f66299bfc83 (diff)
downloadthrift-351e22b52afcbe9b40e0933f80b06b479dff50f4.tar.gz
THRIFT-503. cpp: Move the tests built by "make check" under lib/cpp
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@991246 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib/cpp/test/DebugProtoTest_extras.cpp')
-rw-r--r--lib/cpp/test/DebugProtoTest_extras.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/cpp/test/DebugProtoTest_extras.cpp b/lib/cpp/test/DebugProtoTest_extras.cpp
new file mode 100644
index 000000000..e68c544bb
--- /dev/null
+++ b/lib/cpp/test/DebugProtoTest_extras.cpp
@@ -0,0 +1,32 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+// Extra functions required for DebugProtoTest_types to work
+
+#include "gen-cpp/DebugProtoTest_types.h"
+
+
+namespace thrift { namespace test { namespace debug {
+
+bool Empty::operator<(Empty const& other) const {
+ // It is empty, so all are equal.
+ return false;
+}
+
+}}}