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:
parent
82dc6d1c7e
commit
83e5264c86
209 changed files with 508 additions and 509 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue