1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 17:56:21 +00:00

Pointers passed outside the module should be const.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5271 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-26 10:05:08 +00:00
parent 557b077530
commit 7c96984473

View File

@ -599,7 +599,7 @@ struct cc65_typedata {
/* In case of CC65_TYPE_PTR or CC65_TYPE_FARPTR */ /* In case of CC65_TYPE_PTR or CC65_TYPE_FARPTR */
struct { struct {
cc65_typedata* ind_type; /* Type the pointer points to */ const cc65_typedata* ind_type; /* Type the pointer points to */
} ptr; } ptr;
/* In case of CC65_TYPE_ARRAY */ /* In case of CC65_TYPE_ARRAY */