Michael Hicks
Michael Hicks
Hi Gagan. Your answer seems to suggest that you think there's nothing to do. Even if the algorithm is "standard," isn't it a problem if its use can easily produce...
So far I have skirted the initialization issue because all strings in my porting project are allocated in unchecked files. I'm nearly to the point where I can attempt to...
(Didn't mean to close it.) One way to allocate and initialize a `_Nt_array_ptr` is to use `calloc()` rather than `malloc()`. Perhaps we can/should do this in the short term? I.e.,...
Seems reasonable to me. I have seen a few cases where `const` is cast away in `vsftpd` but I think we could fix those.
Would you only allow redundant structs if the second one had bounds information? This would be more restrictive, perhaps avoiding problems the current spec had in mind?
Overall this looks good! Here are a few comments. ### Including an extra header The proposal states > You would modify your C files to include a header file that...
I can't think of a better solution. What will you call it? `nt_calloc` maybe?
I'm not sure why the dynamic bounds cast to `ptr` is allowed. We can tell that `ptr` and `ptr` (the type of `&temp[20]`) are not compatible. If it fails at...
David, while I think of it: Is it possible to forward from the longer link to this one? We reference the longer address in the most recent Checked C papers...
Thanks! I got that to work. But: using `Arbitrary` for my recursive data type seems to be _way_ slower than using a `TypeGenerator`. Support for the latter was added with...