diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-11-17 10:35:52 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-11-17 10:35:52 +0100 |
commit | b763f47f6fde0726041a6246e969eb22b142f4d8 (patch) | |
tree | 4faf6fc9660da5348efa45374b507ebdefdc3b17 /include | |
parent | d17f6102ab60863b3dead22d619a313aa277e514 (diff) | |
download | astra-b763f47f6fde0726041a6246e969eb22b142f4d8.tar.gz astra-b763f47f6fde0726041a6246e969eb22b142f4d8.tar.bz2 astra-b763f47f6fde0726041a6246e969eb22b142f4d8.tar.xz astra-b763f47f6fde0726041a6246e969eb22b142f4d8.zip |
Improve include guard consistency
Diffstat (limited to 'include')
-rw-r--r-- | include/astra/cuda/2d/darthelper.h | 4 | ||||
-rw-r--r-- | include/astra/cuda/2d/fft.h | 4 | ||||
-rw-r--r-- | include/astra/cuda/3d/algo3d.h | 4 | ||||
-rw-r--r-- | include/astra/cuda/3d/dims3d.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/include/astra/cuda/2d/darthelper.h b/include/astra/cuda/2d/darthelper.h index c15588a..31017fd 100644 --- a/include/astra/cuda/2d/darthelper.h +++ b/include/astra/cuda/2d/darthelper.h @@ -25,8 +25,8 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. ----------------------------------------------------------------------- */ -#ifndef _CUDA_ARITH2_H -#define _CUDA_ARITH2_H +#ifndef _CUDA_DARTHELPER_H +#define _CUDA_DARTHELPER_H #include "astra/Globals.h" diff --git a/include/astra/cuda/2d/fft.h b/include/astra/cuda/2d/fft.h index 52cb863..1283618 100644 --- a/include/astra/cuda/2d/fft.h +++ b/include/astra/cuda/2d/fft.h @@ -25,8 +25,8 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. ----------------------------------------------------------------------- */ -#ifndef FFT_H -#define FFT_H +#ifndef _CUDA_FFT_H +#define _CUDA_FFT_H #include <cufft.h> #include <cuda.h> diff --git a/include/astra/cuda/3d/algo3d.h b/include/astra/cuda/3d/algo3d.h index a70539a..42ed782 100644 --- a/include/astra/cuda/3d/algo3d.h +++ b/include/astra/cuda/3d/algo3d.h @@ -25,8 +25,8 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. ----------------------------------------------------------------------- */ -#ifndef _CUDA_ALGO_H -#define _CUDA_ALGO_H +#ifndef _CUDA_ALGO3D_H +#define _CUDA_ALGO3D_H #include "dims3d.h" #include "util3d.h" diff --git a/include/astra/cuda/3d/dims3d.h b/include/astra/cuda/3d/dims3d.h index 35c9186..a814345 100644 --- a/include/astra/cuda/3d/dims3d.h +++ b/include/astra/cuda/3d/dims3d.h @@ -25,8 +25,8 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. ----------------------------------------------------------------------- */ -#ifndef _CUDA_CONE_DIMS_H -#define _CUDA_CONE_DIMS_H +#ifndef _CUDA_DIMS3D_H +#define _CUDA_DIMS3D_H #include "astra/GeometryUtil3D.h" |