mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Adding missing include guards to header files identified by LGTM.
This addresses the issue godotengine/godot#37143
(cherry picked from commit 2ecf928ae3)
This commit is contained in:
committed by
Rémi Verschelde
parent
bdde501594
commit
19e71f94d8
@@ -28,12 +28,14 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#include "servers/audio_server.h"
|
||||
|
||||
#ifdef ALSA_ENABLED
|
||||
|
||||
#ifndef AUDIO_DRIVER_ALSA_H
|
||||
#define AUDIO_DRIVER_ALSA_H
|
||||
|
||||
#include "core/os/mutex.h"
|
||||
#include "core/os/thread.h"
|
||||
#include "servers/audio_server.h"
|
||||
|
||||
#include <alsa/asoundlib.h>
|
||||
|
||||
@@ -87,4 +89,6 @@ public:
|
||||
~AudioDriverALSA();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // AUDIO_DRIVER_ALSA_H
|
||||
|
||||
#endif // ALSA_ENABLED
|
||||
|
||||
Reference in New Issue
Block a user