Skip to content

Commit 92afbb9

Browse files
committed
fix compile problem test=develop
1 parent 1edd435 commit 92afbb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

paddle/fluid/operators/reader/ctr_reader_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ TEST(CTR_READER, read_data) {
108108

109109
std::tuple<LoD, std::vector<int64_t>> a1({{0, 1, 2, 7}},
110110
{0, 0, 10, 11, 12, 13, 14});
111-
std::tuple<LoD, std::vector<int64_t>> a2({{{0, 1, 2, 3}}, {0, 0, 0}});
112-
std::tuple<LoD, std::vector<int64_t>> a3({{{0, 1, 2, 3}}, {30, 0, 40}});
113-
std::tuple<LoD, std::vector<int64_t>> a4({{{0, 1}}, {0}});
111+
std::tuple<LoD, std::vector<int64_t>> a2({{0, 1, 2, 3}}, {0, 0, 0});
112+
std::tuple<LoD, std::vector<int64_t>> a3({{0, 1, 2, 3}}, {30, 0, 40});
113+
std::tuple<LoD, std::vector<int64_t>> a4({{0, 1}}, {0});
114114
std::vector<std::tuple<LoD, std::vector<int64_t>>> data_slot_6002{a1, a2, a3,
115115
a4};
116116

0 commit comments

Comments
 (0)