aboutsummaryrefslogtreecommitdiff
path: root/scripts/reformat_cpp.sh
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-11-02 23:10:44 +0100
committerGitHub <noreply@github.com>2019-11-02 23:10:44 +0100
commit5ce02144c3802703da57d753ac7572099f0e4551 (patch)
tree577a97540cb0c62b0024d940d691406d5c161b18 /scripts/reformat_cpp.sh
parentc64d3fcb3a60f27631b80b6c7eebb800315ac8eb (diff)
parentd9064c3de62982c461a36ed9997eab56d1cb9f85 (diff)
downloadPROJ-5ce02144c3802703da57d753ac7572099f0e4551.tar.gz
PROJ-5ce02144c3802703da57d753ac7572099f0e4551.zip
Merge pull request #1709 from rouault/improve_extent_filtering
Better filtering based on extent and performance improvements
Diffstat (limited to 'scripts/reformat_cpp.sh')
-rwxr-xr-xscripts/reformat_cpp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reformat_cpp.sh b/scripts/reformat_cpp.sh
index cc10b53e..a8002a6c 100755
--- a/scripts/reformat_cpp.sh
+++ b/scripts/reformat_cpp.sh
@@ -15,7 +15,7 @@ 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; 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; do
if ! echo "$i" | grep -q "lru_cache.hpp"; then
"$SCRIPT_DIR"/reformat.sh "$i";
fi