aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBin Chen <pierr.chen@gmail.com>2016-08-19 15:30:51 +1000
committerBin Chen <pierr.chen@gmail.com>2016-08-19 17:18:01 +1000
commit8113669c0a3e6924ad43cf2c4c2e8c3e4f8f8ec7 (patch)
tree8cf208a398837084c9acf531be8d5b44184bc21b
parent40745eaf9c31a205167d79312a40292529d61708 (diff)
downloadweaved-8113669c0a3e6924ad43cf2c4c2e8c3e4f8f8ec7.tar.gz
weaved: remove explicit keyword for default constructor
Zero-parameter constructors should not be marked explicit. Change-Id: Iefa4bebb9393eb7625ee9d62402e4bff9f412b98 Signed-off-by: Bin Chen <pierr.chen@gmail.com>
-rw-r--r--buffet/avahi_mdns_client.h2
-rw-r--r--buffet/flouride_socket_bluetooth_client.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/buffet/avahi_mdns_client.h b/buffet/avahi_mdns_client.h
index 6bc896e..09386ba 100644
--- a/buffet/avahi_mdns_client.h
+++ b/buffet/avahi_mdns_client.h
@@ -31,7 +31,7 @@ namespace buffet {
// Publishes privet service on mDns using Avahi.
class AvahiMdnsClient : public MdnsClient {
public:
- explicit AvahiMdnsClient();
+ AvahiMdnsClient();
~AvahiMdnsClient() override;
// weave::provider::DnsServiceDiscovery implementation.
diff --git a/buffet/flouride_socket_bluetooth_client.h b/buffet/flouride_socket_bluetooth_client.h
index 869bc8e..9bb4ce7 100644
--- a/buffet/flouride_socket_bluetooth_client.h
+++ b/buffet/flouride_socket_bluetooth_client.h
@@ -32,7 +32,7 @@ namespace buffet {
*/
class FlourideSocketBluetoothClient : public BluetoothClient {
public:
- explicit FlourideSocketBluetoothClient();
+ FlourideSocketBluetoothClient();
~FlourideSocketBluetoothClient() override;
private: