Android-cuttlefish cvd tool
gpr_assert.h
Go to the documentation of this file.
1
2// grpcio-sys 0.13.0 uses grpc 1.56.2 which has GPR_ASSERT. According to
3// https://github.com/grpc/grpc/commit/a3aa81e179c49d26d2604fcc4ffb97a099b6602f
4// GPR_ASSERT is replaced with absl CHECK.
5
6#include "absl/log/check.h"
7#define GPR_ASSERT(...) CHECK(__VA_ARGS__)