From 628e2c8abdb456a8c5dad0de686cc8a81793f5cb Mon Sep 17 00:00:00 2001 From: Federico Tomassetti Date: Sat, 3 Oct 2015 09:11:43 +0200 Subject: [PATCH] add script to run astyle on all the C/C++ code --- run_astyle.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 run_astyle.sh diff --git a/run_astyle.sh b/run_astyle.sh new file mode 100644 index 0000000..ec00c59 --- /dev/null +++ b/run_astyle.sh @@ -0,0 +1,10 @@ +astyle examples/*.hpp +astyle examples/*.cpp +rm examples/*.orig -f +astyle src/*.hpp +astyle src/*.cpp +rm src/*.orig -f +astyle test/*.cpp +rm test/*.orig -f +astyle pybindings/platec_src/*.cpp +rm pybindings/platec_src/*.orig -f