Changeset 7794d8 for molecuilder/src/analyzer.cpp
- Timestamp:
- Oct 5, 2009, 2:35:06 PM (16 years ago)
- Children:
- bf497f
- Parents:
- 2aea0b (diff), 14db08 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
molecuilder/src/analyzer.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/analyzer.cpp
r2aea0b r7794d8 10 10 #include "datacreator.hpp" 11 11 #include "helpers.hpp" 12 #include "memoryallocator.hpp" 12 13 #include "parser.hpp" 13 14 #include "periodentafel.hpp" … … 72 73 return 1; 73 74 } else { 74 dir = (char *) Malloc(sizeof(char)*(strlen(argv[2])+2), "main: *dir");75 dir = Malloc<char>(strlen(argv[2]) + 2, "main: *dir"); 75 76 strcpy(dir, "/"); 76 77 strcat(dir, argv[2]); … … 555 556 // ++++++++++++++++ exit ++++++++++++++++++++++++++++++++++ 556 557 delete(periode); 557 Free( (void **)&dir, "main: *dir");558 Free(&dir); 558 559 cout << "done." << endl; 559 560 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.
