summaryrefslogtreecommitdiffstats
path: root/vdslib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-09-20 20:52:03 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-09-20 20:52:03 +0000
commitffc03d64c7ac1e3dbf76e00bcc02e47c419dfdf9 (patch)
treed47b7e3a736baaa1c07b0ca2985376510867695a /vdslib
parent5092b51f6037764a1875bb7b1c486a145867b413 (diff)
No need for boost::operators.
Diffstat (limited to 'vdslib')
-rw-r--r--vdslib/src/vespa/vdslib/distribution/group.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/vdslib/src/vespa/vdslib/distribution/group.h b/vdslib/src/vespa/vdslib/distribution/group.h
index 138a466a856..d4952941dbd 100644
--- a/vdslib/src/vespa/vdslib/distribution/group.h
+++ b/vdslib/src/vespa/vdslib/distribution/group.h
@@ -11,7 +11,6 @@
*/
#pragma once
-#include <boost/operators.hpp>
#include <map>
#include <vector>
#include <vespa/vespalib/objects/floatingpointtype.h>
@@ -26,7 +25,7 @@ namespace lib {
class IdealGroup;
class SystemState;
-class Group : public document::Printable, public boost::operators<Group>
+class Group : public document::Printable
{
public:
typedef std::unique_ptr<Group> UP;