Skip to content
Snippets Groups Projects
Commit 62a5e365 authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

A couple more cases to ignore. (CheckerGccPlugins-00-02-04)

	* Tagging CheckerGccPlugins-00-02-04.
	* src/gaudi_inheritance_plugin.cxx: Also ignore
	AthReentrantAlgorithm.
	* src/usingns_plugin.cxx: Also ignore G4PhysicalConstants.hh.
parent 7cd46020
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,7 @@ void type_callback (void* gcc_data, void* /*user_data*/)
// Core classes for which we should skip this test.
std::string name = type_name(tt);
if (name == "AthAlgorithm" ||
name == "AthReentrantAlgorithm" ||
name == "AthAlgTool" ||
name == "AthService" ||
name == "SegMemSvc" ||
......
......@@ -199,6 +199,7 @@ void handle_using_decl (tree /*decl*/)
// using decls from g4
if (strendswith_p (file, "/G4SystemOfUnits.hh")) return;
if (strendswith_p (file, "/G4PhysicalConstants.hh")) return;
if (strendswith_p (file, "/G4RadioactivityTable.hh")) return;
......
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