Changeset 17559 for trunk/Mars


Ignore:
Timestamp:
02/19/14 16:54:25 (11 years ago)
Author:
aparavac
Message:
Added compatibilty for gcc 4.7 and c11 std
Location:
trunk/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mbase/MStatusDisplay.cc

    r17130 r17559  
    29162916
    29172917        ps->SetTextAlign(21); // cent bottom
    2918         PSToolsTextNDC(*ps, 0.50, top+off, TString("MARS V"MARSVER" - Modular Analysis and Reconstruction Software - ")+d.AsString());
     2918        PSToolsTextNDC(*ps, 0.50, top+off, TString("MARS V" MARSVER " - Modular Analysis and Reconstruction Software - ")+d.AsString());
    29192919
    29202920        ps->SetTextAlign(31); // right bottom
  • trunk/Mars/mcore/ofits.h

    r17304 r17559  
    993993        SetStr("CREATOR", typeid(*this).name(), "Class that wrote this file");
    994994        SetFloat("EXTREL", 1.0, "Release Number");
    995         SetStr("COMPILED", __DATE__" "__TIME__, "Compile time");
     995        SetStr("COMPILED", __DATE__" " __TIME__, "Compile time");
    996996        SetStr("ORIGIN", "FACT", "Institution that wrote the file");
    997997        SetStr("TIMESYS", "UTC", "Time system");
  • trunk/Mars/mfileio/MWriteFitsFile.cc

    r17148 r17559  
    349349    SetHeaderKey("CREATOR", "Ceres", "");
    350350    SetHeaderKey("EXTREL", 1., "");
    351     SetHeaderKey("COMPILED", __DATE__" "__TIME__, "");
     351    SetHeaderKey("COMPILED", __DATE__" " __TIME__, "");
    352352    //SetHeaderKey("REVISION", "0", "");
    353353    SetHeaderKey("ORIGIN", "FACT", "");
  • trunk/Mars/mjobs/MJSimulation.cc

    r17198 r17559  
    270270    write.SetHeaderKey("CREATOR", "Ceres", "");
    271271    write.SetHeaderKey("EXTREL", 1., "");
    272     write.SetHeaderKey("COMPILED", __DATE__" "__TIME__, "");
     272    write.SetHeaderKey("COMPILED", __DATE__" " __TIME__, "");
    273273    write.SetHeaderKey("REVISION", "0", "");
    274274    write.SetHeaderKey("ORIGIN", "FACT", "");
Note: See TracChangeset for help on using the changeset viewer.