Skip to content

Instantly share code, notes, and snippets.

@APN-Pucky
Last active October 5, 2020 09:08
Show Gist options
  • Save APN-Pucky/05af444efcc052ae12b78d78fc315a1f to your computer and use it in GitHub Desktop.
Save APN-Pucky/05af444efcc052ae12b78d78fc315a1f to your computer and use it in GitHub Desktop.
sed -i "s/static_cast<long double>//g" *.cc *.h
sed -i "s/long double/double/g" *.cc *.h
sed -i "s/\([0-9]*\.[0-9]*\)L/\1/g" *.cc *.h
sed -i "s/\([0-9][0-9]*\.[0-9]*\)L/\1/g" *.cc *.h
sed -i "s/\([0-9][0-9]*\.[0-9][0-9]*\)L/\1/g" *.cc *.h
sed -i "s/static_cast<double>//g" *.cc *.h
sed -i "s/static_cast<complex<double>>//g" *.cc *.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment