From 9d305db3d12f93cb06f5d3f33f517055272afb44 Mon Sep 17 00:00:00 2001 From: Pcornat Date: Mon, 25 Mar 2024 18:26:39 +0100 Subject: [PATCH] Correct name. --- include/malloc_unmanaged.hpp | 12 ++++++++++++ include/malloc_unmanagef.hpp | 12 ------------ src/{malloc_unmanagef.cpp => malloc_unmanaged.cpp} | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 include/malloc_unmanaged.hpp delete mode 100644 include/malloc_unmanagef.hpp rename src/{malloc_unmanagef.cpp => malloc_unmanaged.cpp} (57%) diff --git a/include/malloc_unmanaged.hpp b/include/malloc_unmanaged.hpp new file mode 100644 index 0000000..63ad26b --- /dev/null +++ b/include/malloc_unmanaged.hpp @@ -0,0 +1,12 @@ +// +// Created by postaron on 25/03/24. +// + +#ifndef RAIISAFECUDA_MALLOC_UNMANAGED_HPP +#define RAIISAFECUDA_MALLOC_UNMANAGED_HPP + +namespace safe_cuda { + +} + +#endif //RAIISAFECUDA_MALLOC_UNMANAGED_HPP diff --git a/include/malloc_unmanagef.hpp b/include/malloc_unmanagef.hpp deleted file mode 100644 index 3a8f745..0000000 --- a/include/malloc_unmanagef.hpp +++ /dev/null @@ -1,12 +0,0 @@ -// -// Created by postaron on 25/03/24. -// - -#ifndef RAIISAFECUDA_MALLOC_UNMANAGEF_HPP -#define RAIISAFECUDA_MALLOC_UNMANAGEF_HPP - -namespace safe_cuda { - -} - -#endif //RAIISAFECUDA_MALLOC_UNMANAGEF_HPP diff --git a/src/malloc_unmanagef.cpp b/src/malloc_unmanaged.cpp similarity index 57% rename from src/malloc_unmanagef.cpp rename to src/malloc_unmanaged.cpp index bd282b5..b930290 100644 --- a/src/malloc_unmanagef.cpp +++ b/src/malloc_unmanaged.cpp @@ -2,4 +2,4 @@ // Created by postaron on 25/03/24. // -#include "malloc_unmanagef.hpp" +#include "malloc_unmanaged.hpp"