digitalmars.D.bugs - Internal error: ../ztc/cod2.c 4211
- Ant (3/3) Oct 01 2005 just got
- Ant (7/11) Oct 01 2005 changing:
- Walter Bright (3/14) Oct 01 2005 It would help a lot to have a reproducible small snippet of code?
- Ant (26/27) Oct 02 2005 I got
- Ant (2/35) Oct 02 2005
- Walter Bright (1/1) Oct 04 2005 Thanks, I'll take care of it.
just got Internal error: ../ztc/cod2.c 4211 linux dmd 0.131
Oct 01 2005
Ant wrote:just got Internal error: ../ztc/cod2.c 4211 linux dmd 0.131changing: codeEdit.insertText(insertPos, codeEdit.getCharAt(startComment+1)~" "); to: char c = codeEdit.getCharAt(startComment+1); codeEdit.insertText(insertPos, c~" "); made the error disapear
Oct 01 2005
"Ant" <duitoolkit yahoo.ca> wrote in message news:dhlcvv$26ts$2 digitaldaemon.com...Ant wrote:It would help a lot to have a reproducible small snippet of code?just got Internal error: ../ztc/cod2.c 4211 linux dmd 0.131changing: codeEdit.insertText(insertPos, codeEdit.getCharAt(startComment+1)~" "); to: char c = codeEdit.getCharAt(startComment+1); codeEdit.insertText(insertPos, c~" "); made the error disapear
Oct 01 2005
Walter Bright wrote:It would help a lot to have a reproducible small snippet of code?I got Internal error: ../ztc/cgcs.c 353 (hope it's related to 4211) from: class CodeEdit { void insertText(int pos, char[] str) { } char getCharAt(int pos) { return 'c'; } } void main() { int insertPos = 1; int startComment = 2; CodeEdit codeEdit = new CodeEdit(); codeEdit.insertText(insertPos, codeEdit.getCharAt(startComment+1)~" "); }
Oct 02 2005
I meant 'on' not 'no'... Ant wrote:Walter Bright wrote:It would help a lot to have a reproducible small snippet of code?I got Internal error: ../ztc/cgcs.c 353 (hope it's related to 4211) from: class CodeEdit { void insertText(int pos, char[] str) { } char getCharAt(int pos) { return 'c'; } } void main() { int insertPos = 1; int startComment = 2; CodeEdit codeEdit = new CodeEdit(); codeEdit.insertText(insertPos, codeEdit.getCharAt(startComment+1)~" "); }
Oct 02 2005