-> -> one thing that it seems nonstandard is using an initialized field to -> -> specify an array size is seen like an error in Visual Studio: -> -> -> -> unsigned fieldsize = 100; -> -> - char fieldname[fieldsize]; -> -> + char fieldname[100]; -> -> ->Ahh, ok, we didn't test it explicitly on Windows. Whoops. -> -> ->Hmm, Alex, any thoughts? I thought this was actually a standard feature -> ->of C++. -> -> Ahh alright, I wonder if #defining that would fix the error on windows as -> well? I want to leave that value referenced by name since it is used at -> another location in the code (instead of just calling 100). Once I get -> Visual Studio installed I'll start doing more tests on Windows.
Yes, use #define. --titus --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pygr-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pygr-dev?hl=en -~----------~----~----~----~------~----~------~--~---
