March 30, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | Partial interface implementation is now supported. Woohoo! (ahem ...) "Walter" <walter@digitalmars.com> wrote in message news:c4bddj$2pd3$2@digitaldaemon.com... > Concentrating on fixing bugs and stabilizing things. > > http://www.digitalmars.com/d/changelog.html > > > |
March 30, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Manfred Nowak | "Manfred Nowak" <svv1999@hotmail.com> wrote in message news:c4c79a$110m$1@digitaldaemon.com... > Walter wrote: > > > Concentrating on fixing bugs and stabilizing things. > > mmfile.d is missing in the source of phobos I know, I need to talk about it with Matthew first and he's not been around lately. |
March 31, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | Been suffering the worst kidney-bashing flu of my life. Am gradually coming round ... (whimper whimper) btw, anyone got any idea why most of the new threads of the last several days are missing posts? e.g. this thread does not have the first few posts available to me. :( "Walter" <walter@digitalmars.com> wrote in message news:c4ce8i$1d8g$1@digitaldaemon.com... > > "Manfred Nowak" <svv1999@hotmail.com> wrote in message news:c4c79a$110m$1@digitaldaemon.com... > > Walter wrote: > > > > > Concentrating on fixing bugs and stabilizing things. > > > > mmfile.d is missing in the source of phobos > > I know, I need to talk about it with Matthew first and he's not been around > lately. > > |
March 31, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Matthew | Matthew wrote: >Been suffering the worst kidney-bashing flu of my life. > >Am gradually coming round ... (whimper whimper) > > >btw, anyone got any idea why most of the new threads of the last several >days are missing posts? e.g. this thread does not have the first few posts >available to me. :( > > Maybe your newsreader set to get the last 500 or something? -- -Anderson: http://badmama.com.au/~anderson/ |
March 31, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Matthew | Matthew wrote:
> Been suffering the worst kidney-bashing flu of my life.
>
> Am gradually coming round ... (whimper whimper)
>
>
Kidney bashinging flu? That doesn't sound good!
|
March 31, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to John Reimer | "John Reimer" <jjreimer@telus.net> wrote in message news:c4evdr$2cjh$1@digitaldaemon.com... > Matthew wrote: > > Been suffering the worst kidney-bashing flu of my life. > > > > Am gradually coming round ... (whimper whimper) > > > > > > Kidney bashinging flu? That doesn't sound good! Didn't feel too good: I hadn't felt that bad since 1999, when I spent 9 days with an undiagnosed abscessed appendix. My niece spent two nights in hospital with it. |
April 01, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Matthew | "Matthew" <matthew@stlsoft.org> wrote in message news:c4fhgu$7uk$1@digitaldaemon.com... > Didn't feel too good: I hadn't felt that bad since 1999, when I spent 9 days > with an undiagnosed abscessed appendix. The worst I ever felt was a bout of food poisoning. My father had it once when he was a teen, and went to the doctor, who said there was good news and bad news: the good news is, you are not going to die from it. The bad news is, you'll wish you were <g>. Anyhow, the only good thing about food poisoning is it doesn't last more than a day or two. > My niece spent two nights in hospital with it. Ouch! |
April 01, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Matthew | And here, I thought you were "doing the ironing" :o)) Hope you get well ! Phill. "Matthew" <matthew@stlsoft.org> wrote in message news:c4fhgu$7uk$1@digitaldaemon.com... > > "John Reimer" <jjreimer@telus.net> wrote in message news:c4evdr$2cjh$1@digitaldaemon.com... > > Matthew wrote: > > > Been suffering the worst kidney-bashing flu of my life. > > > > > > Am gradually coming round ... (whimper whimper) > > > > > > > > > > Kidney bashinging flu? That doesn't sound good! > > Didn't feel too good: I hadn't felt that bad since 1999, when I spent 9 days > with an undiagnosed abscessed appendix. > > My niece spent two nights in hospital with it. > > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.644 / Virus Database: 412 - Release Date: 3/26/2004 |
April 02, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | Hello, > Concentrating on fixing bugs and stabilizing things. Is the binary for Linux updated? I downloaded it and run dmd/bin/dmd. But it said it is still version 0.81. > dmd/bin/dmd Digital Mars D Compiler v0.81 Copyright (c) 1999-2004 by Digital Mars written by Walter Bright Documentation: www.digitalmars.com/d/index.html Usage: ... ------------------ shinichiro.h s31552@mail.ecc.u-tokyo.ac.jp |
April 07, 2004 Re: DMD 0.82 release | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | Walter wrote: > Concentrating on fixing bugs and stabilizing things. > > http://www.digitalmars.com/d/changelog.html "Erroneous anonymous struct member offsets within unions fixed." Could you please show an example of this working? My most trivial testcases still don't work. First line of output: 0 4 5 should be 0 0 1 Stewart. ---------- union Qwert { int yuiop; struct { char asdfg; char zxcvb; } } int main() { Qwert hjkl; printf("%d %d %d\n", Qwert.yuiop.offset, Qwert.asdfg.offset, Qwert.zxcvb.offset); printf("%d %c%c\n", hjkl.yuiop, hjkl.asdfg, hjkl.zxcvb); hjkl.asdfg = 'x'; printf("%d %c%c\n", hjkl.yuiop, hjkl.asdfg, hjkl.zxcvb); hjkl.zxcvb = 'q'; printf("%d %c%c\n", hjkl.yuiop, hjkl.asdfg, hjkl.zxcvb); hjkl.yuiop = 16725; printf("%d %c%c\n", hjkl.yuiop, hjkl.asdfg, hjkl.zxcvb); return 0; } -- My e-mail is valid but not my primary mailbox. Please keep replies on on the 'group where everyone may benefit. |
Copyright © 1999-2021 by the D Language Foundation