aboutsummaryrefslogtreecommitdiff
path: root/src/malloc.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-12-20 19:10:20 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-12-22 23:10:43 +0100
commited92965937856ae697010e1461e82f6245d19909 (patch)
tree3f61bf24002b02d8f9c2804b79e93ab9f46a00a6 /src/malloc.cpp
parentf73527fa20c9250cfced6aa73a7e46f40dc2c214 (diff)
downloadPROJ-ed92965937856ae697010e1461e82f6245d19909.tar.gz
PROJ-ed92965937856ae697010e1461e82f6245d19909.zip
Network: add a memory cache and I/O chunking strategy
Diffstat (limited to 'src/malloc.cpp')
-rw-r--r--src/malloc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/malloc.cpp b/src/malloc.cpp
index 3fd3699f..1c539b6b 100644
--- a/src/malloc.cpp
+++ b/src/malloc.cpp
@@ -49,6 +49,7 @@
#include "proj.h"
#include "proj_internal.h"
#include "grids.hpp"
+#include "filemanager.hpp"
using namespace NS_PROJ;
@@ -262,4 +263,5 @@ void proj_cleanup() {
/*****************************************************************************/
pj_clear_initcache();
pj_deallocate_grids();
+ FileManager::clearCache();
}