]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
get rid of compilation warnings
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 16 Nov 2007 13:19:24 +0000 (13:19 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 16 Nov 2007 13:19:24 +0000 (13:19 +0000)
HLT/BASE/AliHLTComponentHandler.cxx
HLT/BASE/AliHLTComponentHandler.h
HLT/BASE/HOMER/AliHLTHOMERData.h

index 1f30afd41a1285739dc57bda7cd5a0c6d28643e9..bcda28af233a34b00b3946dd0dcd1b7c83305d4a 100644 (file)
@@ -54,7 +54,8 @@ AliHLTComponentHandler::AliHLTComponentHandler()
   fScheduleList(),
   fLibraryList(),
   fEnvironment(),
-  fOwnedComponents()
+  fOwnedComponents(),
+  fLibraryMode(kDynamic)
 {
   // see header file for class documentation
   // or
@@ -72,7 +73,8 @@ AliHLTComponentHandler::AliHLTComponentHandler(AliHLTComponentEnvironment* pEnv)
   fScheduleList(),
   fLibraryList(),
   fEnvironment(),
-  fOwnedComponents()
+  fOwnedComponents(),
+  fLibraryMode(kDynamic)
 {
   // see header file for class documentation
   if (pEnv) {
index 2eaec1bb7b5ea6753d686fcb66d636582264c861..b653173cc4f0ab5466bda9ebc842d4efb2ae8460 100644 (file)
@@ -268,7 +268,7 @@ class AliHLTComponentHandler : public AliHLTLogging {
    * Compound descriptor for component libraries
    */
   struct AliHLTLibHandle {
-    AliHLTLibHandle() : fHandle(NULL), fName(NULL) {}
+    AliHLTLibHandle() : fHandle(NULL), fName(NULL), fMode(kDynamic) {}
     /** dlopen handle */
     void* fHandle;                                                 //! transient
     /** name of the library, casted to TString* before use */
index 9d52698268abf82fc2389728acd7dbc725f35a9c..aee8e75eb3e3e23c162865439e6230835e4ae105 100644 (file)
@@ -203,8 +203,8 @@ class HOMERBlockDescriptor
                }
 
        HOMERBlockDescriptor( void* header = 0 )
+         : fHeader(header)
                {
-               fHeader = header;
                }
        void UseHeader( void* header )
                {