Thanks for your tips, guys :) Nothing special, but it did throw me for a loop a bit. And well, one…
Correct. And sorry for misunderstanding your second question!
Yes, he has mentioned he uses metaprogramming for that. C code that generates C code. Here's one d…
Casey said in an early episode that templates is mostly useless and that he don't use them. Have h…
In such case you are accessing completely different variable. If you put something as "static" in …
I understand what define does. What I don't understand is how come the variable in a header file, …
will replace every word called back to , and this happens the compiler starts running. It has …
Oh. DLL file has path to pdb file embedded inside. If you would open DLL file in hex editor you sh…
The PDB is an option supplied to the linker, so probably the linker sets this filename somewhere i…
I've forgotten the second part of my question, one that really baffles me. Why the hell does it al…
thank you for the replay my question is little ambiguous I meant when I'm debugging the applicatio…
MSDN documentation on cl/link arguments is pretty good, use it:
when debugging, does anyone know how visual studio can tell what the name of the PDB file for hand…
thank you a lot this is very helpful but what is this syntax I can't find the documentation and I …
As a sidenote, it is usually good form to do the typedef version when you are making a header that…
You can also use anonymous struct there:
Cheers for the explanations! abnercoimbre, whats the virtue of using typedef life that? Why not ju…
I didn't mean that the C struct is better than a C++ struct (or vice-versa). I tried to show the …
No, I have it using VS Community 2013. It doesn't show up under Debug\Windows at rest. You need…
and are the exact same thing, except for one aspect: A is by default and a is by default. T…
Hello everyone, I have installed VS community 2013 and when I debug my code, I can't get the watch…
Casey hasn't made a big deal out of it other than enjoying some extra features provided by C++ th…
Given that this week we have no stream, it'll give those of us working on this a chance to add the…
Thanks! I'm not that far myself so hadn't spotted it :) We're figuring out a way to automate these…
Thanks for putting this out, I can actually stretch the video. There's one broken link in day 58. …
For a long time I have put cpp after my file but only use classes. I knew about inharence but neve…
Casey hasn't made a big deal out of it other than enjoying some extra features provided by C++ th…
Casey have mentioned that he does like some of C++ features and that is why he uses C++ not pure C…
I am wondering why casey is using cpp files but writing in a C fashion, (and not just use plain C …