aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/common/alarm_test.cc
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-12-22 13:49:30 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-12-22 13:49:30 -0800
commit7536af02cf218f8dcb1368bec6d86c65db95c9b4 (patch)
treecd560e1321aed28504aca5358dabbf49692a0956 /test/cpp/common/alarm_test.cc
parent2d2963e5e919128929e8a62a17fbbc9f3fd684d9 (diff)
Eliminate gpr_ int types - and insist on C99 variants instead
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) {