activemq-cpp/activemq-cpp-gcc47.patch
Fedora Release Engineering f8820a33a0 Unretirement Releng Request: https://pagure.io/releng/issue/12062
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2024-04-13 04:47:43 +00:00

12 lines
556 B
Diff

diff -uNr activemq-cpp-library-3.4.1.ORIG/src/main/decaf/util/AbstractQueue.h activemq-cpp-library-3.4.1/src/main/decaf/util/AbstractQueue.h
--- activemq-cpp-library-3.4.1.ORIG/src/main/decaf/util/AbstractQueue.h 2012-02-19 21:37:49.536000023 +0100
+++ activemq-cpp-library-3.4.1/src/main/decaf/util/AbstractQueue.h 2012-02-19 21:38:56.722000023 +0100
@@ -60,7 +60,7 @@
*/
virtual bool add( const E& value ) {
- if( offer( value ) ) {
+ if( this->offer( value ) ) {
return true;
}