Show
Ignore:
Timestamp:
03/27/08 12:40:50 (8 months ago)
Author:
peter
Message:

source/service.cpp
source/punch_fits.cpp
source/init_coreload.cpp
source/grains_mie.cpp
source/assert_results.cpp
source/parse_punch.cpp
source/optimize_phymir.cpp
source/version.h
source/parse_commands.cpp
source/prt_final.cpp
source/grid_do.cpp
source/parse_print.cpp
source/cddrive.cpp
source/prt_comment.cpp
tsuite/programs/mpi/mpi.cpp

  • Bug-fix for PR59 - cdVersion, cdDate could cause segfault.
  • Start preparing for the change of the release numbering scheme for the next release.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/source/prt_comment.cpp

    r1854 r1891  
    160160        wcnint(); 
    161161 
    162         if( version.nBetaVer > 0 ) 
     162        if( version::Inst().nBetaVer > 0 ) 
    163163        { 
    164164                sprintf( chLine,  
    165165                        "  !This is beta test version%4ld and is intended for testing only.",  
    166                   version.nBetaVer ); 
     166                  version::Inst().nBetaVer ); 
    167167                bangin(chLine); 
    168168        } 
     
    171171         * to show that parts of the code need repair.  
    172172         * lgRelease is true if this is release version */ 
    173         if( broke.lgFixit && !version.lgRelease ) 
     173        if( broke.lgFixit && !version::Inst().lgRelease ) 
    174174        { 
    175175                sprintf( chLine, "  !The code needs to be fixed - search for fixit()." ); 
     
    180180        * to show that parts of the code need to be reviewed.  
    181181        * lgRelease is true if this is release version */ 
    182         if( broke.lgCheckit  && !version.lgRelease ) 
     182        if( broke.lgCheckit  && !version::Inst().lgRelease ) 
    183183        { 
    184184                sprintf( chLine, "  !New code needs to be reviewed - search for CodeReview()." );