view lphobos/typeinfo1/ti_short.d @ 1588:71ad691baeb2

Hack to make compiling the tango 0.99.8 runtime work. The gc has no module statements and the new frontend fails to find the imports. So I add an explicit include path to the runtime gc directory.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 10:54:40 +0100
parents 2c3cd3596187
children
line wrap: on
line source


// short

module typeinfo1.ti_short;

class TypeInfo_s : TypeInfo
{
    char[] toString() { return "short"; }

    hash_t getHash(void *p)
    {
	return *cast(short *)p;
    }

    int equals(void *p1, void *p2)
    {
	return *cast(short *)p1 == *cast(short *)p2;
    }

    int compare(void *p1, void *p2)
    {
	return *cast(short *)p1 - *cast(short *)p2;
    }

    size_t tsize()
    {
	return short.sizeof;
    }

    void swap(void *p1, void *p2)
    {
	short t;

	t = *cast(short *)p1;
	*cast(short *)p1 = *cast(short *)p2;
	*cast(short *)p2 = t;
    }
}