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/parse_print.cpp

    r1815 r1891  
    7272                fprintf( ioQQQ, "Calculations were performed with version %s of Cloudy," 
    7373                        " last described by %s.\n\n", 
    74                         version.chVersion, 
    75                         version.chCitationShort); 
    76                 fprintf( ioQQQ, "The reference is:\n%s\n\n", version.chCitation ); 
    77                 fprintf( ioQQQ, "In Latex this is:\n%s\n\n", version.chCitationLatex  ); 
     74                        version::Inst().chVersion, 
     75                        version::Inst().chCitationShort); 
     76                fprintf( ioQQQ, "The reference is:\n%s\n\n", version::Inst().chCitation ); 
     77                fprintf( ioQQQ, "In Latex this is:\n%s\n\n", version::Inst().chCitationLatex  ); 
    7878        } 
    7979 
     
    9696                /* print compiler and code version information */ 
    9797                fprintf( ioQQQ, "\nThis is Cloudy, version %s\n%s\n\n" ,  
    98                         version.chVersion, 
    99                         version.chInfo ); 
     98                        version::Inst().chVersion, 
     99                        version::Inst().chInfo ); 
    100100        } 
    101101