CppBaseWarningFixes.diff

Zbigniew Rebacz, 03/17/2019 11:58 AM

Download (1.12 KB)

View differences:

Body.cpp (kopia robocza)
32 32
	   t == tk_long || t == tk_signed || t == tk_unsigned || t == tk_short ||
33 33
	   t == tk_char || t == tk___int8 || t == tk___int16 || t == tk___int32 || t == tk___int64 ||
34 34
	   t == tk_auto) {
35
	    q++;
36
	    if(findarg(lex[q], tk_long, tk_int, tk_char) >= 0)
37
	        q++;
38
	    if(findarg(lex[q], tk_long, tk_int, tk_char) >= 0)
39
	        q++;
35
		q++;
36
		if(findarg(lex[q], tk_long, tk_int, tk_char) >= 0)
37
			q++;
38
		if(findarg(lex[q], tk_long, tk_int, tk_char) >= 0)
39
			q++;
40 40
		while(findarg(lex[q], '*', '&', t_and, tk_const) >= 0) // t_and is r-value here
41 41
			q++;
42 42
		if(!lex.IsId(q))
macro.cpp (kopia robocza)
73 73
	String r;
74 74
	const char *s = body;
75 75
	String pp = param;
76
	bool variadic = false;
77 76
	if(*pp.Last() == '.') {
78
		variadic = true;
79 77
		pp.Trim(pp.GetCount() - 1);
80 78
	}
81 79
	Index<String> param(Split(pp, ','));