capn-test: remove unreferenced code, now builds cleanly
previously, this was emitting the following warning (treated as error):
`c++ -g -Wall -Werror -I. -Igtest-1.7.0/include -o capn-test.o -c capn-test.cpp
capn-test.cpp:66:29: error: unused variable 'SUBSTRUCT_DEFAULT' [-Werror,-Wunused-const-variable]
static const AlignedData<2> SUBSTRUCT_DEFAULT = {{0,0,0,0,1,0,0,0, 0,0,0,0,0,0,0,0}};
^
capn-test.cpp:67:29: error: unused variable 'STRUCTLIST_ELEMENT_SUBSTRUCT_DEFAULT' [-Werror,-Wunused-const-variable]
static const AlignedData<2> STRUCTLIST_ELEMENT_SUBSTRUCT_DEFAULT =
^`
This commit is contained in:
parent
97dcc053ef
commit
6b3657437d
1 changed files with 0 additions and 4 deletions
|
|
@ -63,10 +63,6 @@ TEST(WireFormat, SimpleRawDataStruct) {
|
||||||
EXPECT_EQ(UINT16_C(0), capn_read16(ptr, 8));
|
EXPECT_EQ(UINT16_C(0), capn_read16(ptr, 8));
|
||||||
}
|
}
|
||||||
|
|
||||||
static const AlignedData<2> SUBSTRUCT_DEFAULT = {{0,0,0,0,1,0,0,0, 0,0,0,0,0,0,0,0}};
|
|
||||||
static const AlignedData<2> STRUCTLIST_ELEMENT_SUBSTRUCT_DEFAULT =
|
|
||||||
{{0,0,0,0,1,0,0,0, 0,0,0,0,0,0,0,0}};
|
|
||||||
|
|
||||||
static void setupStruct(struct capn *ctx) {
|
static void setupStruct(struct capn *ctx) {
|
||||||
struct capn_ptr root = capn_root(ctx);
|
struct capn_ptr root = capn_root(ctx);
|
||||||
ASSERT_EQ(CAPN_PTR_LIST, root.type);
|
ASSERT_EQ(CAPN_PTR_LIST, root.type);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue