diff options
| author | Jorge Timón <[email protected]> | 2017-06-02 03:18:57 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2017-06-05 20:10:50 +0200 |
| commit | 7c00c267264ad80c2991b2f6c2ae08c2d9c9732b (patch) | |
| tree | ced05e4a7ca759b23c0306092a66aa0e1c65ce36 /src/test/coins_tests.cpp | |
| parent | Small preparations for Q_FOREACH, PAIRTYPE and #include <boost/foreach.hpp> r... (diff) | |
| download | discoin-7c00c267264ad80c2991b2f6c2ae08c2d9c9732b.tar.xz discoin-7c00c267264ad80c2991b2f6c2ae08c2d9c9732b.zip | |
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-
Diffstat (limited to 'src/test/coins_tests.cpp')
| -rw-r--r-- | src/test/coins_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/coins_tests.cpp b/src/test/coins_tests.cpp index 0ed71b96f..43b93c0c6 100644 --- a/src/test/coins_tests.cpp +++ b/src/test/coins_tests.cpp @@ -194,7 +194,7 @@ BOOST_AUTO_TEST_CASE(coins_cache_simulation_test) found_an_entry = true; } } - BOOST_FOREACH(const CCoinsViewCacheTest *test, stack) { + for (const CCoinsViewCacheTest *test : stack) { test->SelfTest(); } } |