1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Removed a helper function that is no longer used.

This commit is contained in:
acqn 2021-04-05 16:40:32 +08:00 committed by Oliver Schmidt
parent 24d36854d2
commit 328345b9c3
2 changed files with 0 additions and 19 deletions

View File

@ -948,20 +948,6 @@ Type* Indirect (Type* T)
const Type* IndirectConst (const Type* T)
/* Do one indirection for the given type, that is, return the type where the
** given type points to.
*/
{
/* We are expecting a pointer expression */
CHECK (IsClassPtr (T));
/* Skip the pointer or array token itself */
return T + 1;
}
Type* ArrayToPtr (Type* T)
/* Convert an array to a pointer to it's first element */
{

View File

@ -353,11 +353,6 @@ Type* Indirect (Type* T);
** given type points to.
*/
const Type* IndirectConst (const Type* T);
/* Do one indirection for the given type, that is, return the type where the
** given type points to.
*/
Type* ArrayToPtr (Type* T);
/* Convert an array to a pointer to it's first element */