Visual C++ - 'uint64_t' : redefinition; different basic types

Hello,

I have a Visual C++ project that compiles fine as a 64bit platform but I get a boatload of errors similar to the following. when compiling as a 32bit platform:


'uint64_t' : redefinition; different basic types

I don't know where in the project that the project is still stuck on "64bit" even though I specified in the configuration manager that I need 32bit.

I also specified the correct includes, etc. for 32bit support.

Has anyone ever seen this before?

Thank you.
uint64_t is a common typedef for a 64-bit unsigned integer. The error means that at the indicated line uint64_t is defined to mean one type, while at a previous line it was indicated to be some other type.
Topic archived. No new replies allowed.