diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-13 22:28:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-13 22:28:03 +0300 |
commit | f2b51ca5984fc464fbcee652b13c0287752d3c7a (patch) | |
tree | f320495b9c67a92a242bdacb64e84824cb6de996 /src/debug | |
parent | d8a5cfe68b1e3826ea9999396c888e2baae062ad (diff) | |
download | plus-f2b51ca5984fc464fbcee652b13c0287752d3c7a.tar.gz plus-f2b51ca5984fc464fbcee652b13c0287752d3c7a.tar.bz2 plus-f2b51ca5984fc464fbcee652b13c0287752d3c7a.tar.xz plus-f2b51ca5984fc464fbcee652b13c0287752d3c7a.zip |
Move memory debug files into nvwa directory.
Diffstat (limited to 'src/debug')
-rw-r--r-- | src/debug/nvwa/_nvwa.h (renamed from src/debug/_nvwa.h) | 0 | ||||
-rw-r--r-- | src/debug/nvwa/c++11.h (renamed from src/debug/c++11.h) | 0 | ||||
-rw-r--r-- | src/debug/nvwa/debug_new.cpp (renamed from src/debug/debug_new.cpp) | 2 | ||||
-rw-r--r-- | src/debug/nvwa/debug_new.h (renamed from src/debug/debug_new.h) | 4 | ||||
-rw-r--r-- | src/debug/nvwa/fast_mutex.h (renamed from src/debug/fast_mutex.h) | 4 | ||||
-rw-r--r-- | src/debug/nvwa/static_assert.h (renamed from src/debug/static_assert.h) | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/debug/_nvwa.h b/src/debug/nvwa/_nvwa.h index 096893c59..096893c59 100644 --- a/src/debug/_nvwa.h +++ b/src/debug/nvwa/_nvwa.h diff --git a/src/debug/c++11.h b/src/debug/nvwa/c++11.h index 8d8e2d8af..8d8e2d8af 100644 --- a/src/debug/c++11.h +++ b/src/debug/nvwa/c++11.h diff --git a/src/debug/debug_new.cpp b/src/debug/nvwa/debug_new.cpp index 594796570..1a59353a3 100644 --- a/src/debug/debug_new.cpp +++ b/src/debug/nvwa/debug_new.cpp @@ -78,7 +78,7 @@ PRAGMA45(GCC diagnostic ignored "-Wcast-qual") * is defined to \c 0 to disable the redefinition of \c new. */ #define _DEBUG_NEW_REDEFINE_NEW 0 -#include "debug/debug_new.h" +#include "debug/nvwa/debug_new.h" #if !_FAST_MUTEX_CHECK_INITIALIZATION && !defined(_NOTHREADS) #error "_FAST_MUTEX_CHECK_INITIALIZATION not set: check_leaks may not work" diff --git a/src/debug/debug_new.h b/src/debug/nvwa/debug_new.h index 926de99de..50b168c2e 100644 --- a/src/debug/debug_new.h +++ b/src/debug/nvwa/debug_new.h @@ -39,8 +39,8 @@ #include <new> // size_t/std::bad_alloc #include <stdio.h> // FILE -#include "debug/_nvwa.h" // NVWA_NAMESPACE_* -#include "debug/c++11.h" // _NOEXCEPT +#include "debug/nvwa/_nvwa.h" // NVWA_NAMESPACE_* +#include "debug/nvwa/c++11.h" // _NOEXCEPT /* Special allocation/deallocation functions in the global scope */ void* operator new(size_t size, const char* file, int line); diff --git a/src/debug/fast_mutex.h b/src/debug/nvwa/fast_mutex.h index 39b5fcdc2..faccc4893 100644 --- a/src/debug/fast_mutex.h +++ b/src/debug/nvwa/fast_mutex.h @@ -37,8 +37,8 @@ #ifndef NVWA_FAST_MUTEX_H #define NVWA_FAST_MUTEX_H -#include "debug/_nvwa.h" // NVWA_NAMESPACE_* -#include "debug/c++11.h" // HAVE_CXX11_MUTEX +#include "debug/nvwa/_nvwa.h" // NVWA_NAMESPACE_* +#include "debug/nvwa/c++11.h" // HAVE_CXX11_MUTEX # if !defined(_NOTHREADS) # if !defined(NVWA_USE_CXX11_MUTEX) && HAVE_CXX11_MUTEX != 0 && \ diff --git a/src/debug/static_assert.h b/src/debug/nvwa/static_assert.h index 49248611d..877ef0f97 100644 --- a/src/debug/static_assert.h +++ b/src/debug/nvwa/static_assert.h @@ -36,7 +36,7 @@ #ifndef STATIC_ASSERT -#include "debug/c++11.h" +#include "debug/nvwa/c++11.h" #if HAVE_CXX11_STATIC_ASSERT |