Skip to content
This repository was archived by the owner on Apr 24, 2019. It is now read-only.

Commit 8c436e5

Browse files
committed
Merge pull request #43 from ARMmbed/build-ignore
Adding ignore file for build system.
2 parents cab862f + 0a5aafe commit 8c436e5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.mbedignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test/*

test/mbed-client-mbed-tls/unittest/stub/m2mbase_stub.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void M2MBase::observation_to_be_sent(m2m::Vector<uint16_t>, bool)
218218
{
219219
}
220220

221-
void *M2MBase::memory_alloc(uint16_t size)
221+
void *M2MBase::memory_alloc(uint32_t size)
222222
{
223223
if(size)
224224
return malloc(size);
@@ -232,7 +232,7 @@ void M2MBase::memory_free(void *ptr)
232232
free(ptr);
233233
}
234234

235-
uint8_t* M2MBase::alloc_string_copy(const uint8_t* source, uint16_t size)
235+
uint8_t* M2MBase::alloc_string_copy(const uint8_t* source, uint32_t size)
236236
{
237237
assert(source != NULL);
238238

@@ -244,7 +244,7 @@ uint8_t* M2MBase::alloc_string_copy(const uint8_t* source, uint16_t size)
244244
return result;
245245
}
246246

247-
uint8_t* M2MBase::alloc_copy(const uint8_t* source, uint16_t size)
247+
uint8_t* M2MBase::alloc_copy(const uint8_t* source, uint32_t size)
248248
{
249249
assert(source != NULL);
250250

0 commit comments

Comments
 (0)