--- branches/intelc_win32/bruce/src/Bruce.cpp 2006/06/26 02:51:25 753 +++ branches/intelc_win32/bruce/src/Bruce.cpp 2006/06/26 08:00:38 754 @@ -896,30 +896,6 @@ // extract Data objects and associated names from dictionary object const int MAX_namelength=256; -/* FIXME: win32 refactor - Not required any more - char names[num_data][MAX_namelength]; - char* c_names[num_data]; - - escriptDataC data[num_data]; - escriptDataC* ptr_data[num_data]; - - for (int i=0; i(dataDict[keys[i]]); - if (dynamic_cast(d.getFunctionSpace().getDomain()) != *this) { - throw BruceException("Error: Bruce::saveVTK: Data must be defined on same Domain"); - } - data[i]=d.getDataC(); - ptr_data[i]=&(data[i]); - std::string n=boost::python::extract(keys[i]); - c_names[i]=&(names[i][0]); - if (n.length()>MAX_namelength-1) { - strncpy(c_names[i],n.c_str(),MAX_namelength-1); - c_names[i][MAX_namelength-1]='\0'; - } else { - strcpy(c_names[i],n.c_str()); - } - } -*/ // // open archive file ofstream archiveFile;