improve signatures for copy constructor and assignment operator for GattServer
parent
3eda3f6fc3
commit
8c33bdd29c
|
@ -55,8 +55,10 @@ private:
|
|||
descriptorCount = 0;
|
||||
};
|
||||
|
||||
nRF51GattServer(nRF51GattServer const &);
|
||||
void operator=(nRF51GattServer const &);
|
||||
|
||||
private:
|
||||
nRF51GattServer(const nRF51GattServer &);
|
||||
const nRF51GattServer& operator=(const nRF51GattServer &);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue