rtems: Remove support for RTEMS_DEPRECATED_TYPES

Close #3584.
This commit is contained in:
Sebastian Huber
2020-05-11 15:08:55 +02:00
parent 312fcf2fd4
commit 2adf328d05
2 changed files with 0 additions and 29 deletions

View File

@@ -44,29 +44,6 @@ extern "C" {
*/
/**@{**/
#ifdef RTEMS_DEPRECATED_TYPES
/**
* @brief Single precision float type.
*
* @deprecated Use @c float instead.
*/
typedef single_precision rtems_single RTEMS_DEPRECATED;
/**
* @brief Double precision float type.
*
* @deprecated Use @c double instead.
*/
typedef double_precision rtems_double RTEMS_DEPRECATED;
/**
* @brief RTEMS boolean type.
*
* @deprecated Use @c bool instead
*/
typedef boolean rtems_boolean RTEMS_DEPRECATED;
#endif
/**
* @brief Classic API @ref ClassicRTEMSSubSecObjectNames "object name" type.
*

View File

@@ -549,12 +549,6 @@ extern void RTEMS_DEQUALIFY_types_not_compatible(void);
#define RTEMS_XSTRING( _x ) RTEMS_STRING( _x )
#ifndef ASM
#ifdef RTEMS_DEPRECATED_TYPES
typedef bool boolean RTEMS_DEPRECATED;
typedef float single_precision RTEMS_DEPRECATED;
typedef double double_precision RTEMS_DEPRECATED;
#endif
/**
* XXX: Eventually proc_ptr needs to disappear!!!
*/