diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-03-25 13:58:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 13:58:29 +0100 |
commit | 35e700e931f565aa37040055126fa61f02424ae0 (patch) | |
tree | 206d5c959b4e441f3c651eb1065b7292607b6da0 /core/math/audio_frame.h | |
parent | 5fede4a81c67961c6fb2309b9b0ceb753d143566 (diff) | |
parent | 13a9bfbca733821f773ca7ffd990ce962c728924 (diff) |
Merge pull request #37290 from akien-mga/style-header-guards-core
Style: Harmonize header guards to style guide [Core]
Diffstat (limited to 'core/math/audio_frame.h')
-rw-r--r-- | core/math/audio_frame.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/math/audio_frame.h b/core/math/audio_frame.h index 6477d029d5..e1dbb385e4 100644 --- a/core/math/audio_frame.h +++ b/core/math/audio_frame.h @@ -28,8 +28,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef AUDIOFRAME_H -#define AUDIOFRAME_H +#ifndef AUDIO_FRAME_H +#define AUDIO_FRAME_H #include "core/math/vector2.h" #include "core/typedefs.h" @@ -140,4 +140,4 @@ struct AudioFrame { _ALWAYS_INLINE_ AudioFrame() {} }; -#endif +#endif // AUDIO_FRAME_H |