Mercurial > hg > bitcoin
changeset 3283:e2e6f4a3d2a0 draft
fix further spelling errors / remove a tab in the source
author | Philip Kaufmann <phil.kaufmann@t-online.de> |
---|---|
date | Thu, 02 Aug 2012 10:09:29 +0200 (2012-08-02) |
parents | 8ee5bde51b5f |
children | f1d60c533a9e |
files | src/qt/guiutil.cpp src/test/bignum_tests.cpp src/util.h |
diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -451,7 +451,7 @@ void HelpMessageBox::showOrPrint() { #if defined(WIN32) - // On windows, show a message box, as there is no stderr/stdout in windowed applications + // On Windows, show a message box, as there is no stderr/stdout in windowed applications exec(); #else // On other operating systems, print help text to console
--- a/src/test/bignum_tests.cpp +++ b/src/test/bignum_tests.cpp @@ -12,8 +12,8 @@ // 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 @@ // 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