Changeset 19246 for trunk/Mars/macros


Ignore:
Timestamp:
10/22/18 18:17:34 (6 years ago)
Author:
tbretz
Message:
Two return values missing, unload() not used at all.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/macros/rootlogon.C

    r19206 r19246  
    4747#include <iomanip>
    4848
    49 
    5049Bool_t isloaded()
    5150{
     
    5554}
    5655
     56/*
    5757void unload()
    5858{
    5959    if (!isloaded())
    60         return;
     60        return true;
    6161
    6262    cout << "Unloading 'libmars.so'... " << flush;
     
    6666        cout << "done." << endl << endl;
    6767}
     68*/
    6869
    6970bool load(TString &dir)
    7071{
    7172    if (isloaded())
    72         return;
     73        return true;
    7374
    7475    cout << "\033[33m\033[1m" << "Loading '" << dir << "libmars.so'... " << "\033[0m" << flush;
Note: See TracChangeset for help on using the changeset viewer.