File tree Expand file tree Collapse file tree 6 files changed +36
-1
lines changed
frameworks/greentea-client/source
storage-volume-manager/source Expand file tree Collapse file tree 6 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ typedef struct {
32
32
uint32_t max_stack;
33
33
} thread_info_t ;
34
34
35
+ #if defined(MBED_STACK_STATS_ENABLED) && MBED_STACK_STATS_ENABLED
35
36
// Mutex to protect "buf"
36
37
static SingletonPtr<Mutex> mutex;
37
- #if defined(MBED_STACK_STATS_ENABLED) && MBED_STACK_STATS_ENABLED
38
38
static char buf[128 ];
39
39
static SingletonPtr<CircularBuffer<thread_info_t , THREAD_BUF_COUNT> > queue;
40
40
#endif
Original file line number Diff line number Diff line change 16
16
*
17
17
*/
18
18
19
+ // This file is deprecated so deprecation warnings when building it are silenced
20
+ #if defined ( __CC_ARM )
21
+ #pragma diag_suppress 1361 // Deprecated declaration
22
+ #elif defined ( __GNUC__ )
23
+ #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
24
+ #endif
25
+
19
26
#include < stdint.h>
20
27
#include < Driver_Common.h>
21
28
#include " storage_volume_manager.h"
Original file line number Diff line number Diff line change 18
18
* test support code implementation file.
19
19
*/
20
20
21
+ // This file is deprecated so deprecation warnings when building it are silenced
22
+ #if defined ( __CC_ARM )
23
+ #pragma diag_suppress 1361 // Deprecated declaration
24
+ #elif defined ( __GNUC__ )
25
+ #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
26
+ #endif
27
+
21
28
#include "cfstore_config.h"
22
29
#include "cfstore_debug.h"
23
30
#include "cfstore_test.h"
Original file line number Diff line number Diff line change 16
16
* limitations under the License.
17
17
*/
18
18
19
+ // This file is deprecated so deprecation warnings when building it are silenced
20
+ #if defined ( __CC_ARM )
21
+ #pragma diag_suppress 1361 // Deprecated declaration
22
+ #elif defined ( __GNUC__ )
23
+ #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
24
+ #endif
25
+
19
26
#include "cfstore_config.h"
20
27
#include "cfstore_debug.h"
21
28
#include "cfstore_list.h"
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
+ // This file is deprecated so deprecation warnings when building it are silenced
19
+ #if defined ( __CC_ARM )
20
+ #pragma diag_suppress 1361 // Deprecated declaration
21
+ #elif defined ( __GNUC__ )
22
+ #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
23
+ #endif
24
+
18
25
#include " storage-volume-manager/storage_volume_manager.h"
19
26
#include < string.h>
20
27
#include < inttypes.h>
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
+ // This file is deprecated so deprecation warnings when building it are silenced
19
+ #if defined ( __CC_ARM )
20
+ #pragma diag_suppress 1361 // Deprecated declaration
21
+ #elif defined ( __GNUC__ )
22
+ #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
23
+ #endif
24
+
18
25
#include " storage-volume-manager/storage_volume_manager.h"
19
26
#include < string.h>
20
27
#include < inttypes.h>
You can’t perform that action at this time.
0 commit comments