view dmd/Complex.d @ 143:95b3ed3cddd5

fixed phobos compilation bug
author Trass3r
date Tue, 14 Sep 2010 15:25:44 +0200
parents 9e39c7de8438
children
line wrap: on
line source

module dmd.Complex;

struct Complex(T)
{
	T re;
	T im;
	
	public static const Complex zero = Complex(0, 0);
}