Pointer in Object[quote]If your manager object keeps allocating memory to a pointer, you have a memory leak unless yo...
Pointer in ObjectI'm wondering if I use a pointer inside an object and the pointer is from an object that keeps alloc...
Same header file in 2 source files problemMy error: [quote]1>winManager.obj : error LNK2005: "public: __thiscall winManager::winManager(void)"...
Same header file in 2 source files problemDoesn't matter, I get the error because of the map_maker struct being defined in two .cpp files.
result of 'float' - 'float' ???Have you tried: [code]float a = -1.5f, b=-1.4f; float c = a-b;[/code] I think your problem is that y...