Mercurial > ~dholland > hg > ag > index.cgi
view tests/agcl/ffcalc/good/ffcm-a.h @ 6:607e3be6bad8
Adjust to the moving target called the C++ standard.
Apparently nowadays it's not allowed to define an explicit copy
constructor but not an assignment operator. Consequently, defining the
explicit copy constructor in terms of the implicit/automatic
assignment operator for general convenience no longer works.
Add assignment operators.
Caution: not tested with the IBM compiler, but there's no particular
reason it shouldn't work.
author | David A. Holland |
---|---|
date | Mon, 30 May 2022 23:46:22 -0400 |
parents | 13d2b8934445 |
children |
line wrap: on
line source
#ifndef FFCM-A_H #define FFCM-A_H typedef union { double alignment; char ag_vt_2[sizeof(int)]; char ag_vt_4[sizeof(double)]; } ffcm-a_vs_type; typedef enum { ffcm-a_white_space_token = 1, ffcm-a_calculator_token = 3, ffcm-a_eof_token = 9, ffcm-a_calculation_token, ffcm-a_expression_token, ffcm-a_name_token, ffcm-a_error_token = 14, ffcm-a_term_token, ffcm-a_factor_token = 18, ffcm-a_identifier_token = 21, ffcm-a_integer_part_token = 31, ffcm-a_fraction_part_token = 33, ffcm-a_digit_token = 35, ffcm-a_statement_token = 43, ffcm-a_real_token = 49, ffcm-a_letter_token = 53 } ffcm-a_token_type; typedef struct ffcm-a_pcb_struct{ ffcm-a_token_type token_number, reduction_token, error_frame_token; int input_code; int input_value; int line, column; int ssx, sn, error_frame_ssx; int drt, dssx, dsn; int ss[128]; ffcm-a_vs_type vs[128]; int ag_ap; const char *error_message; char read_flag; char exit_flag; int bts[128], btsx; int lab[3], rx, fx; const unsigned char *key_sp; int save_index, key_state; char ag_msg[82]; } ffcm-a_pcb_type; #ifndef PRULE_CONTEXT #define PRULE_CONTEXT(pcb) (&((pcb).cs[(pcb).ssx])) #define PERROR_CONTEXT(pcb) ((pcb).cs[(pcb).error_frame_ssx]) #define PCONTEXT(pcb) ((pcb).cs[(pcb).ssx]) #endif #ifndef AG_RUNNING_CODE /* PCB.exit_flag values */ #define AG_RUNNING_CODE 0 #define AG_SUCCESS_CODE 1 #define AG_SYNTAX_ERROR_CODE 2 #define AG_REDUCTION_ERROR_CODE 3 #define AG_STACK_ERROR_CODE 4 #define AG_SEMANTIC_ERROR_CODE 5 #endif extern ffcm-a_pcb_type ffcm-a_pcb; void init_ffcm-a(void); void ffcm-a(void); #endif