Merge pull request #1650 from Diapolo/spelling_fixes
fix further spelling errors / remove a tab in the source
This commit is contained in:
commit
dd199d0ebd
3 changed files with 5 additions and 5 deletions
|
@ -451,7 +451,7 @@ void HelpMessageBox::printToConsole()
|
||||||
void HelpMessageBox::showOrPrint()
|
void HelpMessageBox::showOrPrint()
|
||||||
{
|
{
|
||||||
#if defined(WIN32)
|
#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();
|
exec();
|
||||||
#else
|
#else
|
||||||
// On other operating systems, print help text to console
|
// On other operating systems, print help text to console
|
||||||
|
|
|
@ -12,8 +12,8 @@ BOOST_AUTO_TEST_SUITE(bignum_tests)
|
||||||
// You should use it like this:
|
// You should use it like this:
|
||||||
// NOINLINE void function() {...}
|
// NOINLINE void function() {...}
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
// This also works and will be defined for any compiler implementing gcc
|
// This also works and will be defined for any compiler implementing GCC
|
||||||
// extensions, such as clang and icc.
|
// extensions, such as Clang and ICC.
|
||||||
#define NOINLINE __attribute__((noinline))
|
#define NOINLINE __attribute__((noinline))
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
#define NOINLINE __declspec(noinline)
|
#define NOINLINE __declspec(noinline)
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
#else
|
#else
|
||||||
typedef int pid_t; /* define for windows compatibility */
|
typedef int pid_t; /* define for Windows compatibility */
|
||||||
#endif
|
#endif
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
Loading…
Reference in a new issue