Skip to content

Commit 73f2dd6

Browse files
committed
modify method signatures to pass astyle tests
1 parent d720db5 commit 73f2dd6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

connectivity/cellular/include/cellular/framework/AT/AT_CellularDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class AT_CellularDevice : public CellularDevice {
6767
};
6868

6969
public:
70-
AT_CellularDevice(FileHandle *fh, char* delim = "\r");
70+
AT_CellularDevice(FileHandle *fh, char *delim = "\r");
7171
virtual ~AT_CellularDevice();
7272

7373
virtual nsapi_error_t clear();

connectivity/cellular/source/framework/AT/AT_CellularDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ using namespace std::chrono_literals;
3939
#define DEFAULT_AT_TIMEOUT 1s // at default timeout
4040
const int MAX_SIM_RESPONSE_LENGTH = 16;
4141

42-
AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char* delim):
42+
AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char *delim):
4343
CellularDevice(),
4444
_at(fh, _queue, DEFAULT_AT_TIMEOUT, delim),
4545
#if MBED_CONF_CELLULAR_USE_SMS

connectivity/cellular/tests/UNITTESTS/doubles/AT_CellularDevice_stub.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bool AT_CellularDevice_stub::pin_needed = false;
3333
bool AT_CellularDevice_stub::supported_bool = false;
3434
int AT_CellularDevice_stub::max_sock_value = 1;
3535

36-
AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char* delim) :
36+
AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char *delim) :
3737
CellularDevice(),
3838
_at(fh, _queue, get_property(AT_CellularDevice::PROPERTY_AT_SEND_DELAY), delim),
3939
#if MBED_CONF_CELLULAR_USE_SMS

0 commit comments

Comments
 (0)