From ae038c1d47025b1ed17beb1802c8543ebf0b38b4 Mon Sep 17 00:00:00 2001 From: makdharma <> Date: Mon, 26 Feb 2018 14:01:00 -0800 Subject: [PATCH] Implement newly virtualized "Next" --- test/cpp/codegen/codegen_test_minimal.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/cpp/codegen/codegen_test_minimal.cc b/test/cpp/codegen/codegen_test_minimal.cc index d317ea31164..230ba9d2b41 100644 --- a/test/cpp/codegen/codegen_test_minimal.cc +++ b/test/cpp/codegen/codegen_test_minimal.cc @@ -17,8 +17,15 @@ */ #include +#include namespace grpc { + +// Unused implementation for the virtual "Next" method. +bool CompletionQueue::Next(void** tag, bool* ok) { + return false; +} + namespace { class CodegenTestMinimal : public ::testing::Test {};