Commit 4ec31564 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

fix preprocessor directive bug in lib/atc

parent f5b74191
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ namespace ATC {
    int narg = nargs -1;
#ifdef _WIN32
    double *dargs = (double *) _alloca(sizeof(double) * narg);
#endif
#else
    double *dargs = (double *) alloca(sizeof(double) * narg);
#endif
    for (int i = 0; i < narg; ++i) dargs[i] = atof(args[i+1]);