Changeset 1278 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
04/17/02 11:22:14 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1277 r1278  
    11                                                                  -*-*- END -*-*-
     2
     3 2002/04/17: Thomas Bretz
     4
     5   * mbase/MParContainer.cc:
     6     - case label TMethodCall::kOther changed to default to get rid of
     7       some warnings in newer root's (missing case label kString)
     8
     9   * mbase/MAGIC.h:
     10     - changed defintion of Glog so that it now works on Alpha machines, too.
     11
     12
    213
    314 2002/04/16: Thomas Bretz
  • trunk/MagicSoft/Mars/mbase/MAGIC.h

    r1118 r1278  
    3636//
    3737
    38 //This will be fixed soon. It doesn't work with Alphas at the moment
     38#ifdef __LINUX__
    3939class MLog;
    40 #if !defined (__CINT__) || defined (__LINUX__)
    41 extern MLog gLog;
     40#else
     41#include "MLog.h"
    4242#endif
    4343
     44extern MLog gLog;
     45
    4446#endif
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r1235 r1278  
    248248        return kTRUE;
    249249
    250     case TMethodCall::kOther:
     250    default:
     251    //case TMethodCall::kString:
     252    //case TMethodCall::kOther:
    251253        /* someone may want to enhance this? */
    252254        return kFALSE;
Note: See TracChangeset for help on using the changeset viewer.