Quote from: seti_britta on 05 Jun 2007, 05:14:16 pm...--------------------------------------------------------------------------------------47 overhead = std::min(overhead, ticks);74 min_ticks = std::min(min_ticks, ticks);--------------------------------------------------------------------------------------any suggestions I don't know if my solution would be the best or fastest, but i hope it works (just basic C) :overhead = (overhead <= ticks) ? overhead : ticks;min_ticks = (min_ticks <= ticks) ? min_ticks : ticks;
...--------------------------------------------------------------------------------------47 overhead = std::min(overhead, ticks);74 min_ticks = std::min(min_ticks, ticks);--------------------------------------------------------------------------------------any suggestions
it looks like this is the error, we will see if this will be confirm.......
...next problem is the multideclaration of FORCE_FRAME_POINTER;as you can see it is declared in s_util.h, line 133 and in seti.h line 144and there are no cunstruct in the headerfiles to prevent this.for instance:#ifndef FORCE_FRAME_POINTER#define FORCE_FRAME_POINTER#endif...
// The MS & intel compilers don't allow alloca in try/catch blocks#ifndef FORCE_FRAME_POINTER#if ( defined(HAVE_ALLOCA) || defined(_WIN32) ) && !( defined(__INTEL_COMPILER) || defined (_MSC_VER) ) #define FORCE_FRAME_POINTER alloca(16)#else#define FORCE_FRAME_POINTER (0)#endif#endif