aboutsummaryrefslogtreecommitdiff
path: root/scripts/reformat_cpp.sh
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-12-04 18:56:15 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-12-06 21:35:14 +0100
commit126384854bf8e1b7461aebcc28966a6559971de1 (patch)
tree261e7125c6d9baa2b83d95b2b4547edf095b6850 /scripts/reformat_cpp.sh
parent41ff94791abfebaf8cf2c346b4aefb4895248bf3 (diff)
downloadPROJ-126384854bf8e1b7461aebcc28966a6559971de1.tar.gz
PROJ-126384854bf8e1b7461aebcc28966a6559971de1.zip
vertical grid shift: rework to no longer load whole grid into memory
Diffstat (limited to 'scripts/reformat_cpp.sh')
-rwxr-xr-xscripts/reformat_cpp.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/reformat_cpp.sh b/scripts/reformat_cpp.sh
index a8002a6c..899e665f 100755
--- a/scripts/reformat_cpp.sh
+++ b/scripts/reformat_cpp.sh
@@ -15,7 +15,9 @@ esac
TOPDIR="$SCRIPT_DIR/.."
-for i in "$TOPDIR"/include/proj/*.hpp "$TOPDIR"/include/proj/internal/*.hpp "$TOPDIR"/src/iso19111/*.cpp "$TOPDIR"/test/unit/*.cpp "$TOPDIR"/src/apps/projinfo.cpp "$TOPDIR"/src/tracing.cpp; do
+for i in "$TOPDIR"/include/proj/*.hpp "$TOPDIR"/include/proj/internal/*.hpp \
+ "$TOPDIR"/src/iso19111/*.cpp "$TOPDIR"/test/unit/*.cpp "$TOPDIR"/src/apps/projinfo.cpp \
+ "$TOPDIR"/src/tracing.cpp "$TOPDIR"/src/grids.hpp "$TOPDIR"/src/grids.cpp; do
if ! echo "$i" | grep -q "lru_cache.hpp"; then
"$SCRIPT_DIR"/reformat.sh "$i";
fi