Search Results

1
vote

Is there a GCC preprocessor directive to check if the code is being compiled on a 64 bit machine ?

A recommended solution is to make your application behave more predictably. If you make it dependent on the size of a memory pointer, you may have some undesirable surprises. Printf only understand …
1
vote

Is int x = ‘fooo’ a compiler extension?

Yes, it is standard, but implementation-defined. In practical experience, it represents the 32-bit integer you get by concatenating bytes 'A', 'B', 'C' and 'D'. …
3
votes

C++ Shared Library with Templates: Undefined symbols error

In addition to the other answers, you can explicitly instantiate template classes. This is only useful if you know beforehand what types the template parameters may assume. You instantiate the temp …