Skip to content
Snippets Groups Projects
Commit 9239bd95 authored by Sergey Gorbunov's avatar Sergey Gorbunov Committed by Florian Uhlig
Browse files

nullptr fixes

parent 174ea7f4
No related branches found
No related tags found
1 merge request!1488nullptr fixes
Pipeline #25824 passed
...@@ -23,13 +23,12 @@ ...@@ -23,13 +23,12 @@
#include <boost/any.hpp> // for any_cast, bad_any_cast (ptr... #include <boost/any.hpp> // for any_cast, bad_any_cast (ptr...
#include <boost/exception/exception.hpp> // for clone_impl, error_info_inje... #include <boost/exception/exception.hpp> // for clone_impl, error_info_inje...
#include <cassert> // for assert
#include <gsl/span> #include <gsl/span>
#include <iosfwd> // for string #include <iosfwd> // for string
#include <map> // for map, map<>::mapped_type #include <map> // for map, map<>::mapped_type
#include <vector> // for vector #include <vector> // for vector
#include <assert.h> // for assert
class CbmMatch; class CbmMatch;
/** @brief CbmDigiManager /** @brief CbmDigiManager
......
...@@ -53,7 +53,7 @@ public: ...@@ -53,7 +53,7 @@ public:
/** Output to screen **/ /** Output to screen **/
virtual void Print(const Option_t* opt = 0) const; virtual void Print(const Option_t* opt = nullptr) const;
/** Accessors **/ /** Accessors **/
......
...@@ -48,7 +48,7 @@ public: ...@@ -48,7 +48,7 @@ public:
*@param finder Pointer to STS track finder concrete class *@param finder Pointer to STS track finder concrete class
*@param useMvd Include MVD hits in track finding *@param useMvd Include MVD hits in track finding
**/ **/
CbmStsFindTracks(Int_t iVerbose, CbmStsTrackFinder* finder = NULL, Bool_t useMvd = kTRUE, CbmStsFindTracks(Int_t iVerbose, CbmStsTrackFinder* finder = nullptr, Bool_t useMvd = kTRUE,
const char* name = "STSFindTracks"); const char* name = "STSFindTracks");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment