Read and respond to this message at: 
https://sourceforge.net/projects/gnuwin32/forums/forum/74807/topic/3700601
By: breadbread1984

Why the GSL code compiled on VS2005 get runtime error every time.
[code]
#include <cstdlib>
extern "C" {
#include <gsl/gsl_matrix.h>
}
using namespace std;

int main()
{
        double data[9]={1,2,3,4,5,6,7,8,9};
        for(int i = 0 ; i < 100 ; i++) {
              gsl_matrix_view m = gsl_matrix_view_array(data,3,3);
        }
        return EXIT_SUCCESS;
}
[/code]
I have set the runtime check to default which ensure the error about ESP won't
happen. So the outcome should be attributed to other problems. Thanks for any
suggestion.

_____________________________________________________________________________________
You are receiving this email because you elected to monitor this topic or 
entire forum.
To stop monitoring this topic visit: 
https://sourceforge.net/projects/gnuwin32/forums/forum/74807/topic/3700601/unmonitor
To stop monitoring this forum visit: 
https://sourceforge.net/projects/gnuwin32/forums/forum/74807/unmonitor

------------------------------------------------------------------------------

_______________________________________________
GnuWin32-Users mailing list
GnuWin32-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnuwin32-users

Reply via email to