Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
d03594fb
Commit
d03594fb
authored
7 years ago
by
yang-g
Browse files
Options
Downloads
Patches
Plain Diff
second try
parent
0d9caecd
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/grpc++/impl/codegen/call.h
+7
-3
7 additions, 3 deletions
include/grpc++/impl/codegen/call.h
with
7 additions
and
3 deletions
include/grpc++/impl/codegen/call.h
+
7
−
3
View file @
d03594fb
...
...
@@ -547,7 +547,10 @@ class CallOpClientRecvStatus {
/// TODO(vjpai): Remove the existence of CallOpSetCollectionInterface
/// and references to it. This code is deprecated-on-arrival and is
/// only added for users that bypassed the code-generator.
class
CallOpSetCollectionInterface
{};
class
CallOpSetCollectionInterface
{
public:
virtual
~
CallOpSetCollectionInterface
()
{}
};
/// An abstract collection of call ops, used to generate the
/// grpc_call_op structure to pass down to the lower layers,
...
...
@@ -611,12 +614,13 @@ class CallOpSet : public CallOpSetInterface,
this
->
Op6
::
FinishOp
(
status
);
*
tag
=
return_tag_
;
g_core_codegen_interface
->
grpc_call_unref
(
call_
);
// TODO(vjpai): Remove the reference to collection_ once the idea of
// bypassing the code generator is forbidden. It is already deprecated
grpc_call
*
call
=
call_
;
collection_
.
reset
();
g_core_codegen_interface
->
grpc_call_unref
(
call
);
return
true
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment