Uint won't compile (Common.h)

This must be simple, but googling doesn’t get me close to a solution.
I can’t get uint to compile. Error says unknown type name ‘uint’; did you mean ‘int’?.
This happens with any project that has common.h file with uint in it. Xcode 16, macOS Sequoia 15.1.1.
I tried “clean project”.
Irritating!

Found the answer here. replace uint with uint32_t, or, at the top of the file type:
typedef uint32_t uint;

1 Like

I’m glad you found the answer. The changes to code should be pinned here but I’m not sure it sticks to the top of the forum.

There’s one other change from chapter 23: