Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cooperation
#9
Just for the record, I needed to un-define some macros to get the std::min and std::max to compile:
Code:
#ifdef min
#undef min
#endif

#ifdef max
#undef max
#endif
Not sure why nobody else has this problem, but in my case MSVC++ found macros called "min" and "max" and replaced them with nothing. Obviously, that resulted in syntax errors.

I also had to add DbgHelp.lib to the linker for the stack dump functions.

Is there any up-to-date IDB floating around, btw?
[Image: jsfml.png]
Reply


Messages In This Thread
Cooperation - by Gluk-v48 - 04.10.2012, 15:21:25
RE: Cooperation - by Graion Dilach - 04.10.2012, 17:17:03
RE: Cooperation - by Gluk-v48 - 04.10.2012, 17:24:34
RE: Cooperation - by DCoder - 04.10.2012, 20:22:01
RE: Cooperation - by Graion Dilach - 04.10.2012, 20:50:05
RE: Cooperation - by Gluk-v48 - 04.10.2012, 21:57:16
RE: Cooperation - by Graion Dilach - 04.10.2012, 22:59:07
RE: Cooperation - by Gluk-v48 - 05.10.2012, 05:51:56
RE: Cooperation - by pd - 08.10.2012, 15:09:52
RE: Cooperation - by DCoder - 08.10.2012, 18:42:31



Users browsing this thread: 1 Guest(s)