Ignore:
Timestamp:
Oct 5, 2009, 2:35:06 PM (16 years ago)
Author:
Frederik Heber <heber@…>
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.
Message:

Merge branch 'ConcaveHull' of ssh://stud64d-02/home/metzler/workspace/espack into ConcaveHull

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/analyzer.cpp

    r2aea0b r7794d8  
    1010#include "datacreator.hpp"
    1111#include "helpers.hpp"
     12#include "memoryallocator.hpp"
    1213#include "parser.hpp"
    1314#include "periodentafel.hpp"
     
    7273    return 1;
    7374  } else {
    74     dir = (char *) Malloc(sizeof(char)*(strlen(argv[2])+2), "main: *dir");
     75    dir = Malloc<char>(strlen(argv[2]) + 2, "main: *dir");
    7576    strcpy(dir, "/");
    7677    strcat(dir, argv[2]);
     
    555556  // ++++++++++++++++ exit ++++++++++++++++++++++++++++++++++
    556557  delete(periode);
    557   Free((void **)&dir, "main: *dir");
     558  Free(&dir);
    558559  cout << "done." << endl;
    559560  return 0;
Note: See TracChangeset for help on using the changeset viewer.