diff options
author | David Garcia Quintas <dgq@google.com> | 2016-07-27 20:31:55 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-07-27 20:31:55 -0700 |
commit | 1399e466b0bc7cf8a7f86b256461a132229ecaf4 (patch) | |
tree | 0a13530367109afff44e2ed51f5ed9afdf6804fc /src/cpp/common | |
parent | 3b31fdf77b6504f6582e66b156ca38bd6979ae1f (diff) |
removed codegen/time.h
Diffstat (limited to 'src/cpp/common')
-rw-r--r-- | src/cpp/common/core_codegen.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpp/common/core_codegen.cc b/src/cpp/common/core_codegen.cc index 14ba826de2..f51e31680d 100644 --- a/src/cpp/common/core_codegen.cc +++ b/src/cpp/common/core_codegen.cc @@ -131,6 +131,10 @@ gpr_timespec CoreCodegen::gpr_inf_future(gpr_clock_type type) { return ::gpr_inf_future(type); } +gpr_timespec CoreCodegen::gpr_time_0(gpr_clock_type type) { + return ::gpr_time_0(type); +} + void CoreCodegen::assert_fail(const char* failed_assertion) { gpr_log(GPR_ERROR, "assertion failed: %s", failed_assertion); abort(); |