added a workaround for gcc 4.6 higher, fftw 3.3 or higher and root 5.30.03 or lower. The problem is rootcint which doesn't know __float128
This commit is contained in:
4
src/external/Nonlocal/PNL_PippardFitter.h
vendored
4
src/external/Nonlocal/PNL_PippardFitter.h
vendored
@@ -32,6 +32,10 @@
|
||||
#ifndef _PNL_PIPPARDFITTER_H_
|
||||
#define _PNL_PIPPARDFITTER_H_
|
||||
|
||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||
#ifdef __CINT__
|
||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||
#endif
|
||||
#include <fftw3.h>
|
||||
|
||||
#include "PUserFcnBase.h"
|
||||
|
||||
Reference in New Issue
Block a user