summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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:
};
}
-