Ok well I got it to compile without any errors or warnings but now I get this when I run it:
Quote: "Unhandled exception at 0x00831bc7 in Simple Physics.exe: 0xC0000005: Access violation reading location 0x3f800024."
It tells me the problem is with this block of code:
// This will signal all threads which are in the wait state, to start processing stepDeltaTime() concurrently.
multithreadingUtil->startStepWorld( timestep );
// We can now do other things in this thread if we wish, while the physics runs in separate threads.
// The call below will block until all physics processing the timestep is finished in all threads.
multithreadingUtil->waitForStepWorldFinished();
It says it's at the 2nd line of code where the error is but this errors seem to be cause by the line before.
Use Google first... it's not rocket surgery!