start using a .clang-format code style
[m6w6/libmemcached] / test / lib / Cluster.hpp
index 1bbc9d22325568a7c64369b068b1e64175377c26..c6c0cb926aa776b6d1672d4f4d51d4d128eba83a 100644 (file)
@@ -1,3 +1,18 @@
+/*
+    +--------------------------------------------------------------------+
+    | libmemcached - C/C++ Client Library for memcached                  |
+    +--------------------------------------------------------------------+
+    | Redistribution and use in source and binary forms, with or without |
+    | modification, are permitted under the terms of the BSD license.    |
+    | You should have received a copy of the license in a bundled file   |
+    | named LICENSE; in case you did not receive a copy you can review   |
+    | the terms online at: https://opensource.org/licenses/BSD-3-Clause  |
+    +--------------------------------------------------------------------+
+    | Copyright (c) 2006-2014 Brian Aker   https://datadifferential.com/ |
+    | Copyright (c) 2020 Michael Wallner   <mike@php.net>                |
+    +--------------------------------------------------------------------+
+*/
+
 #pragma once
 
 #include "common.hpp"
 
 class Cluster {
 public:
-  explicit
-  Cluster(Server serv, uint16_t cnt = 0);
+  explicit Cluster(Server serv, uint16_t cnt = 0);
 
   ~Cluster();
 
   Cluster(const Cluster &c) = delete;
-  Cluster &operator = (const Cluster &c) = delete;
+  Cluster &operator=(const Cluster &c) = delete;
 
   Cluster(Cluster &&c)
-  : proto{}
-  {
+  : proto{} {
     *this = move(c);
   };
-  Cluster &operator = (Cluster &&c) {
+  Cluster &operator=(Cluster &&c) {
     count = exchange(c.count, 0);
     proto = exchange(c.proto, Server{});
     cluster = exchange(c.cluster, {});