remove unused script

This commit is contained in:
ado 2022-03-30 19:56:57 +02:00
parent c214975ca0
commit a2d72cdef3
2 changed files with 1 additions and 16 deletions

View File

@ -1,15 +0,0 @@
#!/bin/bash
set -x
set -e
python3 script/single_header_generator.py > ssp.cpp
echo "" >> ssh.cpp
echo 'int main(){ ss::parser p{""}; p.get_next<int, float>(); return 0; }' \
>> ssp.cpp
g++ -std=c++17 ssp.cpp -o ssp.bin -Wall -Wextra
./ssp.bin
rm ssp.cpp ssp.bin

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -x
set -x
set -e
python3 script/single_header_generator.py > ssp.cpp