diff options
| author | Jeff Garzik <[email protected]> | 2012-08-02 14:36:45 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-08-02 14:36:45 -0700 |
| commit | dd199d0ebd086262626a5cc0ce794de6a477d731 (patch) | |
| tree | 94795a9ebf835441a651abce8e14b387709774e5 /src/test/bignum_tests.cpp | |
| parent | Merge pull request #1644 from Diapolo/update_translations (diff) | |
| parent | fix further spelling errors / remove a tab in the source (diff) | |
| download | discoin-dd199d0ebd086262626a5cc0ce794de6a477d731.tar.xz discoin-dd199d0ebd086262626a5cc0ce794de6a477d731.zip | |
Merge pull request #1650 from Diapolo/spelling_fixes
fix further spelling errors / remove a tab in the source
Diffstat (limited to 'src/test/bignum_tests.cpp')
| -rw-r--r-- | src/test/bignum_tests.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/bignum_tests.cpp b/src/test/bignum_tests.cpp index 8620f81f1..744681871 100644 --- a/src/test/bignum_tests.cpp +++ b/src/test/bignum_tests.cpp @@ -12,8 +12,8 @@ BOOST_AUTO_TEST_SUITE(bignum_tests) // You should use it like this: // NOINLINE void function() {...} #if defined(__GNUC__) -// This also works and will be defined for any compiler implementing gcc -// extensions, such as clang and icc. +// This also works and will be defined for any compiler implementing GCC +// extensions, such as Clang and ICC. #define NOINLINE __attribute__((noinline)) #elif defined(_MSC_VER) #define NOINLINE __declspec(noinline) @@ -48,7 +48,7 @@ BOOST_AUTO_TEST_SUITE(bignum_tests) // that -ftrapv will detect overflows. NOINLINE void mysetint64(CBigNum& num, int64 n) { - num.setint64(n); + num.setint64(n); } // For each number, we do 2 tests: one with inline code, then we reset the |