summaryrefslogtreecommitdiffstats
path: root/spec/if/rtems/basedefs/dequalify-depthx.yml
diff options
context:
space:
mode:
Diffstat (limited to 'spec/if/rtems/basedefs/dequalify-depthx.yml')
-rw-r--r--spec/if/rtems/basedefs/dequalify-depthx.yml50
1 files changed, 0 insertions, 50 deletions
diff --git a/spec/if/rtems/basedefs/dequalify-depthx.yml b/spec/if/rtems/basedefs/dequalify-depthx.yml
deleted file mode 100644
index 1d7247df..00000000
--- a/spec/if/rtems/basedefs/dequalify-depthx.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
-brief: |
- Performs a type cast which removes qualifiers without warnings to the
- specified type for the specified variable.
-copyrights:
-- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
-- Copyright (C) 2014 Paval Pisa
-definition:
- default: ((_type)(${/if/c/uintptr_t:/name})(const volatile void *)(_var))
- variants:
- - definition: |
- (const_cast<_type>(_var))
- enabled-by:
- - defined(${/if/compiler/cplusplus:/name})
- - definition: |
- ${/if/compiler/builtin-choose-expr:/name}(${/if/compiler/builtin-types-compatible-p:/name}(
- ${typeof-refx:/name}(_ptr_level, _var),
- ${typeof-refx:/name}(_ptr_level, _type)
- ) || ${/if/compiler/builtin-types-compatible-p:/name}(_type, void *),
- (_type)(_var),
- ${/if/impl/dequalify-types-not-compatible:/name}())
- enabled-by:
- - defined(${/if/compiler/gnuc:/name})
-description: null
-enabled-by: true
-interface-type: macro
-links:
-- role: interface-placement
- uid: header
-- role: interface-ingroup
- uid: group
-name: RTEMS_DEQUALIFY_DEPTHX
-notes: null
-params:
-- description: |
- is the pointer indirection level expressed in *.
- dir: null
- name: _ptr_level
-- description: |
- is the target type of the cast.
- dir: null
- name: _type
-- description: |
- is the variable.
- dir: null
- name: _var
-return:
- return: null
- return-values: []
-type: interface