remove using namespace useless

This commit is contained in:
Francesco Gatti
2022-03-30 22:14:06 +02:00
parent 5e71b99265
commit d4f7b4ad8b
2 changed files with 6 additions and 5 deletions
-1
View File
@@ -5,7 +5,6 @@
#include <NvInfer.h>
#include <vector>
#include <tkdnn.h>
using namespace tk::dnn;
namespace nvinfer1 {
+6 -4
View File
@@ -27,10 +27,12 @@
#if NV_TENSORRT_MAJOR > 7
#define NOEXCEPT noexcept
#else
#define NOEXCEPT
#ifndef NOEXCEPT
#if NV_TENSORRT_MAJOR > 7
#define NOEXCEPT noexcept
#else
#define NOEXCEPT
#endif
#endif