freesolid/libbroad
Xavier Del Campo Romero 208c6e2031
Synchronise with 2.1.2 release
A 2.1.2 release was pushed 10 years after the last modification
timestamp on CVS [1]. Unfortunately, that means these changes were
effectively untracked by CVS. What's even worse, while some of the
changes are stylistic, others are non-trivial and there is no rationale
behind them.

This commit attempts to match this 2.1.2 release, while removing
trailing whitespaces and newlines in order to keep Git (and also myself)
happy.

Trailing whitespaces have been removed with:

while read f
do
    sed -Ei 's/[[:space:]]+$//g' "$f"
done <<EOF
$(find . -iname '*.cpp' -o -iname '*.h')
EOF

Trailing newlines have been removed with:

while read f
do
    sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' -- "$f"
done <<EOF
$(find . -iname '*.cpp' -o -iname '*.h')
EOF

[1]: https://sourceforge.net/projects/freesolid/files/FreeSOLID-2.1.2.zip/download
2025-01-31 00:27:02 +01:00
..
BP_C-api.cpp Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00
BP_Endpoint.cpp Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00
BP_Endpoint.h Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00
BP_Proxy.cpp Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00
BP_Proxy.h Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00
BP_Scene.cpp Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00
BP_Scene.h Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00
broad.dsp Move contents to root directory after cvs2git 2025-01-26 23:01:03 +01:00
CMakeLists.txt Set up CMake-based build system 2025-01-27 00:24:02 +01:00
Makefile.am Synchronise with 2.1.2 release 2025-01-31 00:27:02 +01:00