remove deprecated dynamicmem

This commit is contained in:
Joachim Schoeberl 2023-08-05 10:36:20 +02:00
parent d2870b3e36
commit 1461ad34bb
3 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,4 @@
target_sources(nglib PRIVATE target_sources(nglib PRIVATE
dynamicmem.cpp
gzstream.cpp gzstream.cpp
hashtabl.cpp hashtabl.cpp
mystring.cpp mystring.cpp
@ -13,12 +12,15 @@ target_sources(nglib PRIVATE
table.cpp table.cpp
) )
# dynamicmem.cpp
install(FILES install(FILES
ngarray.hpp autodiff.hpp autoptr.hpp ngbitarray.hpp ngarray.hpp autodiff.hpp autoptr.hpp ngbitarray.hpp
dynamicmem.hpp hashtabl.hpp myadt.hpp hashtabl.hpp myadt.hpp
mystring.hpp netgenout.hpp ngpython.hpp mystring.hpp netgenout.hpp ngpython.hpp
optmem.hpp parthreads.hpp seti.hpp sort.hpp optmem.hpp parthreads.hpp seti.hpp sort.hpp
spbita2d.hpp stack.hpp table.hpp template.hpp spbita2d.hpp stack.hpp table.hpp template.hpp
gzstream.h gzstream.h
DESTINATION ${NG_INSTALL_DIR_INCLUDE}/general COMPONENT netgen_devel DESTINATION ${NG_INSTALL_DIR_INCLUDE}/general COMPONENT netgen_devel
) )
# dynamicmem.hpp

View File

@ -1,3 +1,6 @@
not needed anymore ?
#ifndef FILE_DYNAMICMEM #ifndef FILE_DYNAMICMEM
#define FILE_DYNAMICMEM #define FILE_DYNAMICMEM

View File

@ -25,7 +25,7 @@ namespace netgen
} }
#include "parthreads.hpp" #include "parthreads.hpp"
// #include "moveablemem.hpp" // #include "moveablemem.hpp"
#include "dynamicmem.hpp" // #include "dynamicmem.hpp"
#include "template.hpp" #include "template.hpp"
#include "ngarray.hpp" #include "ngarray.hpp"