Search Results

2
votes

When are C++ macros beneficial?

I occasionally use macros so I can define information in one place, but use it in different ways in different parts of the code. It's only slightly evil :) For example, in "field_list.h": …
0
votes

When are C++ macros beneficial?

You can use #defines to help with debugging and unit test scenarios. For example, create special logging variants of the memory functions and create a special memlog_preinclude.h: …
13
votes

What use are const pointers (as opposed to pointers to const objects)?

It allows you to protect the pointer from being changed. This means you can protect assumptions you make based on the pointer never changing or from unintentional modification, for example: …
0
votes

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

String reversed in place, no temp variable. static inline void byteswap (char *a, char *b) { *a = *a^*b; *b = *a^*b; *a = *a^*b; } void reverse (char *string) { char *end = …
1
vote

Operating System compile time

How long it takes will really depend on the build set up, I really doubt that the Vista engineers need a day to build the code even if it would take a day on a single machine. I work on a p …
0
votes

Data type of uintptr_t

The uintptr_t is designed to allow you to have a type that can be either a uint or a pointer. This is the sort of thing we used to do when all uints and pointers were 32-bits. Now we have LP64 (u …
1
vote

Should network packet payload data be aligned on proper boundries?

You practically can't use a class or structure for this if you want any sort of portability. In your example, the ints may be 32-bit or 64-bit depending on your system. You're most likely using a …