@@ -1915,7 +1915,7 @@ class ReadOnlyGattCharacteristic : public GattCharacteristic {
1915
1915
* attribute value that equals sizeof(T). For a variable length alternative,
1916
1916
* use GattCharacteristic directly.
1917
1917
*/
1918
- ReadOnlyGattCharacteristic<T> (
1918
+ ReadOnlyGattCharacteristic (
1919
1919
const UUID &uuid,
1920
1920
T *valuePtr,
1921
1921
uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
@@ -1958,7 +1958,7 @@ class WriteOnlyGattCharacteristic : public GattCharacteristic {
1958
1958
* attribute value with maximum size equal to sizeof(T). For a fixed length
1959
1959
* alternative, use GattCharacteristic directly.
1960
1960
*/
1961
- WriteOnlyGattCharacteristic<T> (
1961
+ WriteOnlyGattCharacteristic (
1962
1962
const UUID &uuid,
1963
1963
T *valuePtr,
1964
1964
uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
@@ -2000,7 +2000,7 @@ class ReadWriteGattCharacteristic : public GattCharacteristic {
2000
2000
* attribute value with maximum size equal to sizeof(T). For a fixed length
2001
2001
* alternative, use GattCharacteristic directly.
2002
2002
*/
2003
- ReadWriteGattCharacteristic<T> (
2003
+ ReadWriteGattCharacteristic (
2004
2004
const UUID &uuid,
2005
2005
T *valuePtr,
2006
2006
uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
@@ -2043,7 +2043,7 @@ class WriteOnlyArrayGattCharacteristic : public GattCharacteristic {
2043
2043
* attribute value with maximum size equal to sizeof(T) * NUM_ELEMENTS.
2044
2044
* For a fixed length alternative, use GattCharacteristic directly.
2045
2045
*/
2046
- WriteOnlyArrayGattCharacteristic<T, NUM_ELEMENTS> (
2046
+ WriteOnlyArrayGattCharacteristic (
2047
2047
const UUID &uuid,
2048
2048
T valuePtr[NUM_ELEMENTS],
2049
2049
uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
@@ -2087,7 +2087,7 @@ class ReadOnlyArrayGattCharacteristic : public GattCharacteristic {
2087
2087
* attribute value that equals sizeof(T) * NUM_ELEMENTS. For a variable
2088
2088
* length alternative, use GattCharacteristic directly.
2089
2089
*/
2090
- ReadOnlyArrayGattCharacteristic<T, NUM_ELEMENTS> (
2090
+ ReadOnlyArrayGattCharacteristic (
2091
2091
const UUID &uuid,
2092
2092
T valuePtr[NUM_ELEMENTS],
2093
2093
uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
@@ -2132,7 +2132,7 @@ class ReadWriteArrayGattCharacteristic : public GattCharacteristic {
2132
2132
* attribute value with maximum size equal to sizeof(T) * NUM_ELEMENTS.
2133
2133
* For a fixed length alternative, use GattCharacteristic directly.
2134
2134
*/
2135
- ReadWriteArrayGattCharacteristic<T, NUM_ELEMENTS> (
2135
+ ReadWriteArrayGattCharacteristic (
2136
2136
const UUID &uuid,
2137
2137
T valuePtr[NUM_ELEMENTS],
2138
2138
uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
0 commit comments