Since the new version of ROOT (2/13) I get the following message from
rootcint for every line in a class containing a static TString:
Error: ~TString() header declared but not defined FILE: LINE:0
for example:
----- OTRCMParameters.H -----
#ifndef ROOT_TString
#include "TString.h"
#endif
class OTRCMParameters
{
public:
static TString fgRCMHostname; // hostname where RCM is present
};
-----
gives this...
What happend?
Rutger