Skip to content
Snippets Groups Projects
Commit 33b25d65 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

TrkVKalVrtCore: Fix compilation with clang.

Inconsistent function declarations.
parent 3fc68229
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
#include "TrkVKalVrtCore/CommonPars.h" #include "TrkVKalVrtCore/CommonPars.h"
...@@ -18,7 +18,7 @@ namespace Trk { ...@@ -18,7 +18,7 @@ namespace Trk {
void vkvfast_(double *p1, double *p2, double *dbmag, double *out) void vkvfast_(double *p1, double *p2, double *dbmag, double *out)
{ {
void vkvFastV(double*, double*, double* vRef, double, double *out); double vkvFastV(double*, double*, double* vRef, double, double *out);
vkvFastV(p1, p2, nullptr, (*dbmag), out); } vkvFastV(p1, p2, nullptr, (*dbmag), out); }
......
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