aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/common/alarm_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/cpp/common/alarm_test.cc')
-rw-r--r--test/cpp/common/alarm_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cpp/common/alarm_test.cc b/test/cpp/common/alarm_test.cc
index 18083cd8bd..d41a25a63c 100644
--- a/test/cpp/common/alarm_test.cc
+++ b/test/cpp/common/alarm_test.cc
@@ -43,12 +43,12 @@ namespace {
class TestTag : public CompletionQueueTag {
public:
TestTag() : tag_(0) {}
- TestTag(gpr_intptr tag) : tag_(tag) {}
+ TestTag(intptr_t tag) : tag_(tag) {}
bool FinalizeResult(void** tag, bool* status) { return true; }
- gpr_intptr tag() { return tag_; }
+ intptr_t tag() { return tag_; }
private:
- gpr_intptr tag_;
+ intptr_t tag_;
};
TEST(AlarmTest, RegularExpiry) {