We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Kknewkles
I've forgotten the second part of my question, one that really baffles me. Why the hell does it al…
»
Ameen Sayegh
thank you for the replay my question is little ambiguous I meant when I'm debugging the applicatio…
»
Mārtiņš Možeiko
MSDN documentation on cl/link arguments is pretty good, use it:
»
Ameen Sayegh
when debugging, does anyone know how visual studio can tell what the name of the PDB file for hand…
»
Ameen Sayegh
thank you a lot this is very helpful but what is this syntax I can't find the documentation and I …
»
Casey Muratori
As a sidenote, it is usually good form to do the typedef version when you are making a header that…
»
Mārtiņš Možeiko
You can also use anonymous struct there:
»
Adam
Cheers for the explanations! abnercoimbre, whats the virtue of using typedef life that? Why not ju…
»
Abner Coimbre
I didn't mean that the C struct is better than a C++ struct (or vice-versa). I tried to show the …
»
Neil Blakey-Milner
No, I have it using VS Community 2013. It doesn't show up under Debug\Windows at rest. You need…
»
d7samurai
and are the exact same thing, except for one aspect: A is by default and a is by default. T…
»
Jonathan Riendeau
Hello everyone, I have installed VS community 2013 and when I debug my code, I can't get the watch…
»
Adam
Casey hasn't made a big deal out of it other than enjoying some extra features provided by C++ th…
»
Abner Coimbre
Given that this week we have no stream, it'll give those of us working on this a chance to add the…
»
Kasper Sauramo
Thanks! I'm not that far myself so hadn't spotted it :) We're figuring out a way to automate these…
»
popcorn
Thanks for putting this out, I can actually stretch the video. There's one broken link in day 58. …
»
popcorn
For a long time I have put cpp after my file but only use classes. I knew about inharence but neve…
»
Abner Coimbre
Casey hasn't made a big deal out of it other than enjoying some extra features provided by C++ th…
»
Mārtiņš Možeiko
Casey have mentioned that he does like some of C++ features and that is why he uses C++ not pure C…
»
nikki
I am wondering why casey is using cpp files but writing in a C fashion, (and not just use plain C …
»
Kknewkles
Stupid me. Make another header for custom types - I can swear I had that thought. Thanks. So I gue…
»
Abner Coimbre
The preprocessor runs independently for each file. Should you have on a single source file, then …
»
Kknewkles
When Casey started separating source code into multiple files, I noticed that handmade.h and handm…
»
Casey Muratori
For the record, yes, I usually have bool8, bool16, bool32, bool64. This has nothing to do with an…
»
Benjamin Kloster
To be fair, the only way we'd ever get "meaningful" results is measuring execution time, preferra…
»
Christopher
I don't think he was talking about Casey. I think he was talking about a hypothetical novice prog…
»
popcorn
Wow,I read this article, trying to keep an open mind but after he called Casey a novice programme…
»
Sven
To get meaningful results you really should compile with optimizations for such tests. The compil…
»
popcorn
mmm assembly I guess since eax register is 32 bit, it makes it easier for the compiler than a 8 bi…
»
Benjamin Kloster
Ok, so struct size optimization is one reason to use fixed-size bool. I guess the next question is…
»