Skip to content

Commit

Permalink
Removed leftover TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
dgquintas committed Jun 10, 2015
1 parent a561ea6 commit 62a6430
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/core/transport/stream_op.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,8 @@ typedef struct grpc_stream_op {
} data;
} grpc_stream_op;

/* A stream op buffer is a wrapper around stream operations that is dynamically
extendable.
TODO(ctiller): inline a few elements into the struct, to avoid common case
per-call allocations. */
/** A stream op buffer is a wrapper around stream operations that is
* dynamically extendable. */
typedef struct grpc_stream_op_buffer {
grpc_stream_op *ops;
size_t nops;
Expand Down

2 comments on commit 62a6430

@vjpai
Copy link
Member

@vjpai vjpai commented on 62a6430 Jun 10, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

@dgquintas
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This certainly shouldn't have any impact on T :) Merge at your leisure.

Please sign in to comment.