Repository: qpid-proton
Updated Branches:
refs/heads/master 0a34741dc -> f28b34e68
NO-JIRA: Eliminate warning on Visual Studio compiler
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/f28b34e6
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/f28b34e6
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/f28b34e6
Branch: refs/heads/master
Commit: f28b34e682255625881d4553c02b16de9163aca3
Parents: 0a34741
Author: Andrew Stitcher <astitcher@apache.org>
Authored: Thu Jan 28 16:31:55 2016 -0500
Committer: Andrew Stitcher <astitcher@apache.org>
Committed: Thu Jan 28 16:31:55 2016 -0500
----------------------------------------------------------------------
proton-c/bindings/cpp/src/engine_test.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/f28b34e6/proton-c/bindings/cpp/src/engine_test.cpp
----------------------------------------------------------------------
diff --git a/proton-c/bindings/cpp/src/engine_test.cpp b/proton-c/bindings/cpp/src/engine_test.cpp
index ce71874..cb8e389 100644
--- a/proton-c/bindings/cpp/src/engine_test.cpp
+++ b/proton-c/bindings/cpp/src/engine_test.cpp
@@ -34,7 +34,7 @@ using namespace test;
// One end of an in-memory connection
struct mem_pipe {
mem_pipe(std::deque<char>& r, std::deque<char>& w) : read(r), write(w)
{}
- struct std::deque<char> &read, &write;
+ std::deque<char> &read, &write;
};
struct mem_queues : public std::pair<std::deque<char>, std::deque<char> >
{
---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org
|