aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++
diff options
context:
space:
mode:
Diffstat (limited to 'include/grpc++')
-rw-r--r--include/grpc++/client_context.h4
-rw-r--r--include/grpc++/impl/call.h10
-rw-r--r--include/grpc++/support/slice.h4
3 files changed, 9 insertions, 9 deletions
diff --git a/include/grpc++/client_context.h b/include/grpc++/client_context.h
index 8e7c3579e3..ab8ffb6474 100644
--- a/include/grpc++/client_context.h
+++ b/include/grpc++/client_context.h
@@ -137,10 +137,10 @@ class PropagationOptions {
return *this;
}
- gpr_uint32 c_bitmask() const { return propagate_; }
+ uint32_t c_bitmask() const { return propagate_; }
private:
- gpr_uint32 propagate_;
+ uint32_t propagate_;
};
namespace testing {
diff --git a/include/grpc++/impl/call.h b/include/grpc++/impl/call.h
index df45d6f485..cb7856bfbe 100644
--- a/include/grpc++/impl/call.h
+++ b/include/grpc++/impl/call.h
@@ -70,7 +70,7 @@ class WriteOptions {
inline void Clear() { flags_ = 0; }
/// Returns raw flags bitset.
- inline gpr_uint32 flags() const { return flags_; }
+ inline uint32_t flags() const { return flags_; }
/// Sets flag for the disabling of compression for the next message write.
///
@@ -126,13 +126,13 @@ class WriteOptions {
}
private:
- void SetBit(const gpr_uint32 mask) { flags_ |= mask; }
+ void SetBit(const uint32_t mask) { flags_ |= mask; }
- void ClearBit(const gpr_uint32 mask) { flags_ &= ~mask; }
+ void ClearBit(const uint32_t mask) { flags_ &= ~mask; }
- bool GetBit(const gpr_uint32 mask) const { return (flags_ & mask) != 0; }
+ bool GetBit(const uint32_t mask) const { return (flags_ & mask) != 0; }
- gpr_uint32 flags_;
+ uint32_t flags_;
};
/// Default argument for CallOpSet. I is unused by the class, but can be
diff --git a/include/grpc++/support/slice.h b/include/grpc++/support/slice.h
index 456379cc5b..be316e7c94 100644
--- a/include/grpc++/support/slice.h
+++ b/include/grpc++/support/slice.h
@@ -72,10 +72,10 @@ class Slice GRPC_FINAL {
size_t size() const { return GPR_SLICE_LENGTH(slice_); }
/// Raw pointer to the beginning (first element) of the slice.
- const gpr_uint8* begin() const { return GPR_SLICE_START_PTR(slice_); }
+ const uint8_t* begin() const { return GPR_SLICE_START_PTR(slice_); }
/// Raw pointer to the end (one byte \em past the last element) of the slice.
- const gpr_uint8* end() const { return GPR_SLICE_END_PTR(slice_); }
+ const uint8_t* end() const { return GPR_SLICE_END_PTR(slice_); }
private:
friend class ByteBuffer;