1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Formatting: Remove double-dots from comments and other strings

This commit is contained in:
reuk 2025-11-17 19:00:05 +00:00
parent 82dc6d1c7e
commit 83e5264c86
No known key found for this signature in database
209 changed files with 508 additions and 509 deletions

View file

@ -187,7 +187,7 @@ namespace juce
#else
//==============================================================================
// If debugging is disabled, these dummy debug and assertion macros are used..
// If debugging is disabled, these dummy debug and assertion macros are used.
#define DBG(textToWrite)
#define jassertfalse JUCE_BLOCK_WITH_FORCED_SEMICOLON (JUCE_LOG_CURRENT_ASSERTION;)
@ -228,19 +228,19 @@ namespace juce
@code
class MyClass
{
etc..
etc.
private:
MyClass (const MyClass&);
MyClass& operator= (const MyClass&);
};@endcode
..you can just write:
...you can just write:
@code
class MyClass
{
etc..
etc.
private:
JUCE_DECLARE_NON_COPYABLE (MyClass)

View file

@ -95,7 +95,7 @@
#include "juce_PlatformDefs.h"
//==============================================================================
// Now we'll include some common OS headers..
// Now we'll include some common OS headers.
JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4514 4245 4100)
#if JUCE_MSVC
@ -134,7 +134,7 @@ JUCE_END_IGNORE_WARNINGS_MSVC
#include <byteswap.h>
#endif
// undef symbols that are sometimes set by misguided 3rd-party headers..
// undef symbols that are sometimes set by misguided 3rd-party headers
#undef TYPE_BOOL
#undef max
#undef min

View file

@ -204,7 +204,7 @@ public:
static StringArray getMachineIdentifiers (MachineIdFlags flags);
//==============================================================================
// CPU and memory information..
// CPU and memory information
/** Returns the number of logical CPU cores. */
static int getNumCpus() noexcept;