Search Results

0
votes

Why is CFileFind throwing an error after changing to a static library?

Also, you don't have the required include for CFileFind. According to MSDN, you need to include afx.h. …
7
votes

C++ best practices

If you look for more in depth details about C++ best practices, I recommand the book "Effective C++" by Scott Meyers. …
0
votes

Should I use double or float ?

The main difference between float and double is precision. Wikipedia has more info about Single precision (float) and …
2
votes

best lib for vector array in c++

Eigen, supports auto-vectorisation of vector on certains compilers (GCC 4, VC++ 2008). …
0
votes

Open Source C++ game engine math libraries?

See my response here: http://stackoverflow.com/questions/1491716/best-lib-for-vector-array-in-c/1 …
0
votes

c++ hex number format

In one on my projects I did this: ostream &operator<<(ostream &stream, byte value) { stream << "0x" << hex << (int)value; return stream; } …