mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-09-15 14:49:55 +00:00
Merge pull request #3557 from Ouss4/assert
Ensure that only one definition of ASSERT is present
This commit is contained in:
@@ -516,6 +516,9 @@ static const size_t test_lengths[2] =
|
|||||||
375U
|
375U
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Make sure no other definition is already present. */
|
||||||
|
#undef ASSERT
|
||||||
|
|
||||||
#define ASSERT( cond, args ) \
|
#define ASSERT( cond, args ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
|
|||||||
@@ -472,6 +472,9 @@ static const unsigned char test_mac[1][16] =
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Make sure no other definition is already present. */
|
||||||
|
#undef ASSERT
|
||||||
|
|
||||||
#define ASSERT( cond, args ) \
|
#define ASSERT( cond, args ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
|
|||||||
@@ -509,6 +509,9 @@ static const unsigned char test_mac[2][16] =
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Make sure no other definition is already present. */
|
||||||
|
#undef ASSERT
|
||||||
|
|
||||||
#define ASSERT( cond, args ) \
|
#define ASSERT( cond, args ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Changes
|
||||||
|
* Undefine the ASSERT macro before defining it locally, in case it is defined
|
||||||
|
in a platform header. Contributed by Abdelatif Guettouche in #3557.
|
||||||
Reference in New Issue
Block a user