~jdpipe/ascend/trunk-old

« back to all changes in this revision

Viewing changes to base/generic/compiler/dimen.c

  • Committer: johnpye
  • Date: 2006-10-26 10:18:53 UTC
  • Revision ID: svn-v4:f15cd148-d149-4907-926e-73cf92b3ee03:trunk:908
first attempt at merging with Ben's changes on the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
429
429
                , CONST char *label1, CONST dim_type *d1
430
430
                , CONST char *label2, CONST dim_type *d2
431
431
){
432
 
                /*
 
432
#if 0
433
433
                error_reporter_start(ASC_USER_ERROR,NULL,0,NULL);
434
434
                FPRINTF(ASCERR,"%s: %s='", message, label1);
435
435
                PrintDimen(ASCERR,d1);
437
437
                PrintDimen(ASCERR,d2);
438
438
                FPRINTF(ASCERR,"'");
439
439
                error_reporter_end_flush();
440
 
                */
 
440
#else
 
441
        (void)message; (void)label1; (void)d1; (void)d2; (void)label2;
 
442
#endif  
441
443
                ERROR_REPORTER_HERE(ASC_USER_ERROR,"Invalid dimensions");
442
444
}
443
445