Ignore:
Timestamp:
2009-09-25T13:30:06+12:00 (15 years ago)
Author:
ak19
Message:

Dr Bainbridge edited the code to make it safer C++ and to fix bugs and possibly memory issues, since there is a bus error on MacOs 10.4 (Tiger) on Veronica's Macbook Pro.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/trunk/search4j/libsearch4j.h

    r18596 r20709  
    2323
    2424    // version string. era.major.minor_update. eg: 1.4.2_02
    25     int era;
    26     int major;
    27     int minor;
    28     int update;
     25    int era_;
     26    int major_;
     27    int minor_;
     28    int update_;
    2929
    30     string javaHome;
    31     bool isJdk;
    32     bool healthy;
     30    string javaHome_;
     31    bool isJdk_;
     32    bool healthy_;
    3333
    3434    public:
    3535    Jvm();
     36    ~Jvm();
     37
    3638    void setJavaHome( string jh );
    3739    string getJavaHome();
     
    6062
    6163
    62 bool find( Jvm &jvm, bool use_minimum, Jvm minimum, bool jreOnly, bool jdeOnly, string phint, string hint, bool verbose );
     64bool find( Jvm &jvm, bool use_minimum, const Jvm& minimum, bool jreOnly, bool jdeOnly, string phint, string hint, bool verbose );
Note: See TracChangeset for help on using the changeset viewer.