summaryrefslogtreecommitdiffstats
path: root/vespaclient
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-03 13:44:59 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-03 13:44:59 +0200
commit6bb303db8bed0c7b7005d88eec0ac8945251a995 (patch)
tree31ef981e83f6d30d6e35775daa13057e59d5e028 /vespaclient
parent92c158699b16d84855e7a05de8a0173abca0bebc (diff)
Proper default move constructor....
Diffstat (limited to 'vespaclient')
-rw-r--r--vespaclient/src/vespa/vespaclient/clusterlist/clusterlist.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/vespaclient/src/vespa/vespaclient/clusterlist/clusterlist.h b/vespaclient/src/vespa/vespaclient/clusterlist/clusterlist.h
index 98596ea2524..f0de212d486 100644
--- a/vespaclient/src/vespa/vespaclient/clusterlist/clusterlist.h
+++ b/vespaclient/src/vespa/vespaclient/clusterlist/clusterlist.h
@@ -21,7 +21,7 @@ public:
Cluster(const std::string& name, const std::string& configId);
Cluster(const Cluster &);
Cluster & operator = (const Cluster &);
- Cluster(Cluster &) = default;
+ Cluster(Cluster &&) = default;
Cluster & operator = (Cluster &&) = default;
~Cluster();
@@ -52,4 +52,3 @@ private:
};
}
-