Shuta Nakamae / nRF51822

Fork of nRF51822 by Nordic Semiconductor

Revision:
226:416f90600fbe
Parent:
225:08f36b78e0f1
Child:
227:7a0bb8545c75
--- a/btle/btle_gattc.cpp	Fri Jun 19 15:55:19 2015 +0100
+++ b/btle/btle_gattc.cpp	Fri Jun 19 15:55:19 2015 +0100
@@ -31,13 +31,6 @@
  *        the discovery process.
  */
 struct DiscoveredService {
-    DiscoveredService() {
-        /* empty */
-    }
-    DiscoveredService(ShortUUIDBytes_t uuidIn, Gap::Handle_t start, Gap::Handle_t end) {
-        setup(uuidIn, start, end);
-    }
-
     void setup(ShortUUIDBytes_t uuidIn, Gap::Handle_t start, Gap::Handle_t end) {
         uuid        = uuidIn;
         startHandle = start;
@@ -53,13 +46,6 @@
  *        the discovery process.
  */
 struct DiscoveredCharacteristic {
-    DiscoveredCharacteristic() {
-        /* empty */
-    }
-    DiscoveredCharacteristic(ShortUUIDBytes_t uuidIn, ble_gatt_char_props_t props, Gap::Handle_t declHandle, Gap::Handle_t valueHandle) {
-        setup(uuidIn, props, declHandle, valueHandle);
-    }
-
     void setup(ShortUUIDBytes_t uuidIn, ble_gatt_char_props_t propsIn, Gap::Handle_t declHandleIn, Gap::Handle_t valueHandleIn) {
         uuid        = uuidIn;
         props       = propsIn;