Implement newly virtualized "Next"

pull/14517/head
makdharma 7 years ago
parent 8065000697
commit ae038c1d47
  1. 7
      test/cpp/codegen/codegen_test_minimal.cc

@ -17,8 +17,15 @@
*/ */
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include <grpcpp/impl/codegen/completion_queue.h>
namespace grpc { namespace grpc {
// Unused implementation for the virtual "Next" method.
bool CompletionQueue::Next(void** tag, bool* ok) {
return false;
}
namespace { namespace {
class CodegenTestMinimal : public ::testing::Test {}; class CodegenTestMinimal : public ::testing::Test {};

Loading…
Cancel
Save