Skip to content
Snippets Groups Projects
Commit bcc871d1 authored by Atlas-Software Librarian's avatar Atlas-Software Librarian Committed by Graeme Stewart
Browse files

'CMakeLists.txt' (TrkTrackLink-01-00-03)

	* Remove user-written (but do-nothing) constructor and copy ctor, to solve coverity 12287
12287 09/07/2014 (Low) Copy without assign :/build/AtlasOffline-dev/AtlasEvent/rel_2/InstallArea/include/TrkTrackLink/TrkTrackLink/ITrackLink.h in function ""
	* tag as TrkTrackLink-01-00-03
parent 250e6a4a
No related branches found
No related tags found
No related merge requests found
################################################################################
# Package: TrkTrackLink
################################################################################
# Declare the package name:
atlas_subdir( TrkTrackLink )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
Tracking/TrkEvent/TrkNeutralParameters
Tracking/TrkEvent/TrkParameters )
# External dependencies:
find_package( ROOT COMPONENTS Core Tree MathCore Hist RIO pthread )
# Component(s) in the package:
atlas_add_dictionary( TrkTrackLinkDict
TrkTrackLink/TrkTrackLinkDict.h
TrkTrackLink/selection.xml
INCLUDE_DIRS ${ROOT_INCLUDE_DIRS}
LINK_LIBRARIES ${ROOT_LIBRARIES} TrkNeutralParameters TrkParameters )
# Install files from the package:
atlas_install_headers( TrkTrackLink )
...@@ -27,16 +27,11 @@ namespace Trk ...@@ -27,16 +27,11 @@ namespace Trk
{ {
public: public:
///Default 'do nothing' constructors are used
/** default constructor */
ITrackLink() {}
/** default destructor */ /** default destructor */
virtual ~ITrackLink() {} virtual ~ITrackLink() {}
/** copy constructor */
ITrackLink ( const ITrackLink& ) {}
/** clone methods for copy constructors */ /** clone methods for copy constructors */
virtual ITrackLink * clone() const = 0; virtual ITrackLink * clone() const = 0;
......
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