Updated Branches: refs/heads/master 3bf8e206b -> fda8cee39
TS-2532 One more compiler warning fix, as per Geffons wishes Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/fda8cee3 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/fda8cee3 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/fda8cee3 Branch: refs/heads/master Commit: fda8cee39abf5552e5a58d055b44b8a10a652920 Parents: 3bf8e20 Author: Leif Hedstrom <[email protected]> Authored: Mon Feb 3 14:49:15 2014 -0700 Committer: Leif Hedstrom <[email protected]> Committed: Mon Feb 3 14:49:15 2014 -0700 ---------------------------------------------------------------------- lib/atscppapi/examples/post_buffer/PostBuffer.cc | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fda8cee3/lib/atscppapi/examples/post_buffer/PostBuffer.cc ---------------------------------------------------------------------- diff --git a/lib/atscppapi/examples/post_buffer/PostBuffer.cc b/lib/atscppapi/examples/post_buffer/PostBuffer.cc index 5d0ea83..a360788 100644 --- a/lib/atscppapi/examples/post_buffer/PostBuffer.cc +++ b/lib/atscppapi/examples/post_buffer/PostBuffer.cc @@ -33,6 +33,7 @@ public: PostBufferTransformationPlugin(Transaction &transaction) : TransformationPlugin(transaction, REQUEST_TRANSFORMATION), transaction_(transaction) { buffer_.reserve(1024); // not required, this is an optimization to start the buffer at a slightly higher value. + (void)transaction_; } void consume(const string &data) {
