Revert "Update TinySTL (attempt 2). (#341)"

This reverts commit 73966ef218.
This commit is contained in:
Бранимир Караџић
2025-01-30 11:42:36 -08:00
parent 73966ef218
commit fae06fa431
17 changed files with 271 additions and 1222 deletions

View File

@@ -1,16 +0,0 @@
#!/bin/bash -eux
if [ $# != 1 ]; then
echo "Usage: $0 <tinystl-upstream-folder>"
exit 1
fi
SRC_DIR=$1
DST_DIR="include/tinystl"
pushd $(dirname $0)/..
cp $SRC_DIR/include/TINYSTL/*.h $DST_DIR/
find $DST_DIR -iname "*.h" -exec sed --in-place 's/<TINYSTL\//<tinystl\//g' {} \;
popd