mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
Fix warnings produced with -Weffc++ in fairmq, base/MQ and Tutorial3.
Remaining warnings originate from boost::msm and boost::mpl. Also, warnings with missing initializer list entries for DeviceOptions are false positives, since those are PODs.
This commit is contained in:
committed by
Florian Uhlig
parent
a8854d36ac
commit
ce58ee2302
@@ -20,7 +20,7 @@
|
||||
#include "FairMQPoller.h"
|
||||
#include "FairMQSocket.h"
|
||||
|
||||
using std::vector;
|
||||
using namespace std;
|
||||
|
||||
class FairMQPollerZMQ : public FairMQPoller
|
||||
{
|
||||
@@ -36,6 +36,10 @@ class FairMQPollerZMQ : public FairMQPoller
|
||||
private:
|
||||
zmq_pollitem_t* items;
|
||||
int fNumItems;
|
||||
|
||||
/// Copy Constructor
|
||||
FairMQPollerZMQ(const FairMQPollerZMQ&);
|
||||
FairMQPollerZMQ operator=(const FairMQPollerZMQ&);
|
||||
};
|
||||
|
||||
#endif /* FAIRMQPOLLERZMQ_H_ */
|
Reference in New Issue
Block a user