From cc456b652567779d013dbcfd9cf58fa58d8055ba Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 14 Jun 2020 22:12:41 +0200 Subject: [PATCH] refactor: no namespace scopes in source files --- fpga/gpu/src/kernels.cu | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/fpga/gpu/src/kernels.cu b/fpga/gpu/src/kernels.cu index c03ed7e0c..db0c96cd0 100644 --- a/fpga/gpu/src/kernels.cu +++ b/fpga/gpu/src/kernels.cu @@ -20,8 +20,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . *********************************************************************************/ - - #include + +#include #include @@ -30,8 +30,7 @@ #include "kernels.hpp" -namespace villas { -namespace gpu { +using namespace villas::gpu; __global__ void @@ -61,6 +60,3 @@ kernel_memcpy(volatile uint8_t* dst, volatile uint8_t* src, size_t length) length--; } } - -} // namespace villas -} // namespace gpu