Search Results

7
votes

How would you improve this algorithm? (c string reversal)

if( string[0] ) { char *end = string + strlen(string)-1; while( start < end ) { char temp = *string; *string++ = *end; *end-- = temp; } } …
0
votes

Determine Process Info Programmatically in Darwin/OSX

Most of this info can be gotten from …
2
votes

C++ IDE for Macs

XCode is free and good, which is lucky because it's pretty much the only option on the Mac. …
2
votes

Should my C++ program support IA64 or only x64?

You're the only person qualified to make the judgement of whether expected sales will cover the cost of developing and supporting it. …
13
votes

C++ example of Coding Horror or Brilliant Idea?

Personally I think that if there's a crime, it's asking the header for the payload. But as long as you're going to do it that way, 'this+1' is as good a way as any. Justification: ' …
3
votes

Infinite loops - top or bottom?

Infinite tail-recursion ;) It's somewhat compiler-dependant... …
4
votes

Why use infinite loops?

while( 1 ) { game->update(); game->render(); } Edit: That is, my app is fundamentally based around an infinite loop, and I can't be bothered …
3
votes

Why do people use __(double underscore) so much in C++

It's something you're not meant to do in 'normal' code. This ensures that compilers and system libraries can define symbols that won't collide with yours. …
5
votes

Constant value in conditional expression

A warning doesn't automatically mean that code is bad, just suspicious-looking. Personally I start from a position of enabling all the warnings I can, then turn off any that prove …
1
vote

Extending an existing class like a namespace (C++)?

Inheritance (as you pointed out), or Use a function instead of a method, or Alter the engine code itself, but isolate and manage the changes using a patch-manager like quilt …
1
vote

Using NaN in C++?

You can write a signalling NaN into a variable without triggering an exception with something like this (nb: untested) void set_snan( double &d ) { long long *bits = (long l …
0
votes

How to use std::signaling_nan?

From TFM: cout << "The signaling NaN for type float is: " << numeric_limits<fl …