Merge pull request #4144 from raingo/master
use 'typedef' instead of 'using' to compile on gcc4.8.2
This commit is contained in:
commit
461caa8613
@ -247,7 +247,7 @@ class Call : public UntypedCall<Service> {
|
|||||||
|
|
||||||
// Used as void* completion markers from grpc to indicate different
|
// Used as void* completion markers from grpc to indicate different
|
||||||
// events of interest for a Call.
|
// events of interest for a Call.
|
||||||
using typename UntypedCall<Service>::Tag;
|
typedef typename UntypedCall<Service>::Tag Tag;
|
||||||
Tag request_received_tag_{this, Tag::kRequestReceived};
|
Tag request_received_tag_{this, Tag::kRequestReceived};
|
||||||
Tag response_sent_tag_{this, Tag::kResponseSent};
|
Tag response_sent_tag_{this, Tag::kResponseSent};
|
||||||
Tag cancelled_tag_{this, Tag::kCancelled};
|
Tag cancelled_tag_{this, Tag::kCancelled};
|
||||||
|
Loading…
Reference in New Issue
Block a user