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:
Rajat Goswami
2020-03-21 21:29:40 -04:00
committed by Rémi Verschelde
parent bdde501594
commit 19e71f94d8
50 changed files with 255 additions and 4 deletions

View File

@@ -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