Browse Source

Fixed some Doxygen parsing issues

tags/2021-05-28
ed 4 years ago
parent
commit
744e16eebd
4 changed files with 6 additions and 4 deletions
  1. +3
    -1
      modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterWindow.h
  2. +1
    -1
      modules/juce_core/files/juce_File.h
  3. +1
    -1
      modules/juce_core/memory/juce_ByteOrder.h
  4. +1
    -1
      modules/juce_core/text/juce_String.h

+ 3
- 1
modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterWindow.h View File

@@ -25,7 +25,9 @@
#pragma once
#include "../utility/juce_CreatePluginFilter.h"
#ifndef DOXYGEN
#include "../utility/juce_CreatePluginFilter.h"
#endif
namespace juce
{


+ 1
- 1
modules/juce_core/files/juce_File.h View File

@@ -20,7 +20,7 @@
==============================================================================
*/
#if JUCE_MAC || JUCE_IOS
#if ! DOXYGEN && (JUCE_MAC || JUCE_IOS)
#if __LP64__
using OSType = unsigned int;
#else


+ 1
- 1
modules/juce_core/memory/juce_ByteOrder.h View File

@@ -20,7 +20,7 @@
==============================================================================
*/
#if JUCE_MAC || JUCE_IOS
#if ! DOXYGEN && (JUCE_MAC || JUCE_IOS)
#include <libkern/OSByteOrder.h>
#endif


+ 1
- 1
modules/juce_core/text/juce_String.h View File

@@ -20,7 +20,7 @@
==============================================================================
*/
#if JUCE_MAC || JUCE_IOS
#if ! DOXYGEN && (JUCE_MAC || JUCE_IOS)
// Annoyingly we can only forward-declare a typedef by forward-declaring the
// aliased type
#if __has_attribute(objc_bridge)


Loading…
Cancel
Save