Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scripted-diff: Remove BOOST_FOREACH, Q_FOREACH and PAIRTYPE #10502

Merged
merged 4 commits into from Jun 14, 2017

Commits on Jun 5, 2017

  1. Copy the full SHA
    a5410ac View commit details
    Browse the repository at this point in the history
  2. scripted-diff: Fully remove BOOST_FOREACH

    -BEGIN VERIFY SCRIPT-
    sed -i 's/BOOST_FOREACH *(\(.*\),/for (\1 :/' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp ;
    -END VERIFY SCRIPT-
    jtimon committed Jun 5, 2017
    Copy the full SHA
    7c00c26 View commit details
    Browse the repository at this point in the history
  3. scripted-diff: Remove Q_FOREACH

    -BEGIN VERIFY SCRIPT-
    sed -i 's/Q_FOREACH *(\(.*\),/for (\1 :/' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp ;
    -END VERIFY SCRIPT-
    jtimon committed Jun 5, 2017
    Copy the full SHA
    18dc3c3 View commit details
    Browse the repository at this point in the history
  4. scripted-diff: Remove PAIRTYPE

    -BEGIN VERIFY SCRIPT-
    sed -i 's/PAIRTYPE(\([^,]*\), \([^\)]*\))/std::pair<\1, \2>/' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp ;
    sed -i ':a;N;$!ba;s/#define std::pair<t1, t2>    std::pair<t1, t2>\n//' ./src/utilstrencodings.h ;
    -END VERIFY SCRIPT-
    jtimon committed Jun 5, 2017
    Copy the full SHA
    1238f13 View commit details
    Browse the repository at this point in the history