Ensure header guards enclose entire header.
(cherry picked from commit f6ad1954f7
)
This commit is contained in:
parent
ee97e45a69
commit
c6cccdf0c6
7 changed files with 28 additions and 27 deletions
|
@ -28,11 +28,11 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef MINIZIP_ENABLED
|
||||
|
||||
#ifndef FILE_ACCESS_ZIP_H
|
||||
#define FILE_ACCESS_ZIP_H
|
||||
|
||||
#ifdef MINIZIP_ENABLED
|
||||
|
||||
#include "core/io/file_access_pack.h"
|
||||
#include "core/map.h"
|
||||
|
||||
|
@ -119,6 +119,6 @@ public:
|
|||
~FileAccessZip();
|
||||
};
|
||||
|
||||
#endif // FILE_ACCESS_ZIP_H
|
||||
|
||||
#endif // MINIZIP_ENABLED
|
||||
|
||||
#endif // FILE_ACCESS_ZIP_H
|
||||
|
|
|
@ -28,11 +28,11 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef ALSA_ENABLED
|
||||
|
||||
#ifndef AUDIO_DRIVER_ALSA_H
|
||||
#define AUDIO_DRIVER_ALSA_H
|
||||
|
||||
#ifdef ALSA_ENABLED
|
||||
|
||||
#include "core/os/mutex.h"
|
||||
#include "core/os/thread.h"
|
||||
#include "servers/audio_server.h"
|
||||
|
@ -89,6 +89,6 @@ public:
|
|||
~AudioDriverALSA();
|
||||
};
|
||||
|
||||
#endif // AUDIO_DRIVER_ALSA_H
|
||||
|
||||
#endif // ALSA_ENABLED
|
||||
|
||||
#endif // AUDIO_DRIVER_ALSA_H
|
||||
|
|
|
@ -28,11 +28,11 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef ALSAMIDI_ENABLED
|
||||
|
||||
#ifndef MIDI_DRIVER_ALSAMIDI_H
|
||||
#define MIDI_DRIVER_ALSAMIDI_H
|
||||
|
||||
#ifdef ALSAMIDI_ENABLED
|
||||
|
||||
#include "core/os/midi_driver.h"
|
||||
#include "core/os/mutex.h"
|
||||
#include "core/os/thread.h"
|
||||
|
@ -65,5 +65,6 @@ public:
|
|||
virtual ~MIDIDriverALSAMidi();
|
||||
};
|
||||
|
||||
#endif // MIDI_DRIVER_ALSAMIDI_H
|
||||
#endif // ALSAMIDI_ENABLED
|
||||
|
||||
#endif // MIDI_DRIVER_ALSAMIDI_H
|
||||
|
|
|
@ -28,11 +28,11 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef PULSEAUDIO_ENABLED
|
||||
|
||||
#ifndef AUDIO_DRIVER_PULSEAUDIO_H
|
||||
#define AUDIO_DRIVER_PULSEAUDIO_H
|
||||
|
||||
#ifdef PULSEAUDIO_ENABLED
|
||||
|
||||
#include "core/os/mutex.h"
|
||||
#include "core/os/thread.h"
|
||||
#include "servers/audio_server.h"
|
||||
|
@ -125,6 +125,6 @@ public:
|
|||
~AudioDriverPulseAudio();
|
||||
};
|
||||
|
||||
#endif // AUDIO_DRIVER_PULSEAUDIO_H
|
||||
|
||||
#endif // PULSEAUDIO_ENABLED
|
||||
|
||||
#endif // AUDIO_DRIVER_PULSEAUDIO_H
|
||||
|
|
|
@ -28,14 +28,14 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
|
||||
#ifndef CVTT_REGISTER_TYPES_H
|
||||
#define CVTT_REGISTER_TYPES_H
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
|
||||
void register_cvtt_types();
|
||||
void unregister_cvtt_types();
|
||||
|
||||
#endif // CVTT_REGISTER_TYPES_H
|
||||
|
||||
#endif // TOOLS_ENABLED
|
||||
|
||||
#endif // CVTT_REGISTER_TYPES_H
|
||||
|
|
|
@ -28,11 +28,11 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef WEBRTC_GDNATIVE_ENABLED
|
||||
|
||||
#ifndef WEBRTC_DATA_CHANNEL_GDNATIVE_H
|
||||
#define WEBRTC_DATA_CHANNEL_GDNATIVE_H
|
||||
|
||||
#ifdef WEBRTC_GDNATIVE_ENABLED
|
||||
|
||||
#include "modules/gdnative/include/net/godot_net.h"
|
||||
#include "webrtc_data_channel.h"
|
||||
|
||||
|
@ -75,6 +75,6 @@ public:
|
|||
~WebRTCDataChannelGDNative();
|
||||
};
|
||||
|
||||
#endif // WEBRTC_DATA_CHANNEL_GDNATIVE_H
|
||||
|
||||
#endif // WEBRTC_GDNATIVE_ENABLED
|
||||
|
||||
#endif // WEBRTC_DATA_CHANNEL_GDNATIVE_H
|
||||
|
|
|
@ -28,11 +28,11 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef WEBRTC_GDNATIVE_ENABLED
|
||||
|
||||
#ifndef WEBRTC_PEER_CONNECTION_GDNATIVE_H
|
||||
#define WEBRTC_PEER_CONNECTION_GDNATIVE_H
|
||||
|
||||
#ifdef WEBRTC_GDNATIVE_ENABLED
|
||||
|
||||
#include "modules/gdnative/include/net/godot_net.h"
|
||||
#include "webrtc_peer_connection.h"
|
||||
|
||||
|
@ -68,6 +68,6 @@ public:
|
|||
~WebRTCPeerConnectionGDNative();
|
||||
};
|
||||
|
||||
#endif // WEBRTC_PEER_CONNECTION_GDNATIVE_H
|
||||
|
||||
#endif // WEBRTC_GDNATIVE_ENABLED
|
||||
|
||||
#endif // WEBRTC_PEER_CONNECTION_GDNATIVE_H
|
||||
|
|
Loading…
Reference in a new issue