Skip to content

Commit

Permalink
Fixed warning about reserved macros with a leading underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 2, 2016
1 parent fc0a53e commit af271a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SDL_ttf.h
Expand Up @@ -28,8 +28,8 @@
Unicode is hard, we learn as we go, and we apologize for adding to the
confusion. */

#ifndef _SDL_TTF_H
#define _SDL_TTF_H
#ifndef SDL_TTF_H_
#define SDL_TTF_H_

#include "SDL.h"
#include "begin_code.h"
Expand Down Expand Up @@ -277,4 +277,4 @@ extern DECLSPEC int TTF_GetFontKerningSizeGlyphs(TTF_Font *font, Uint16 previous
#endif
#include "close_code.h"

#endif /* _SDL_TTF_H */
#endif /* SDL_TTF_H_ */

0 comments on commit af271a4

Please sign in to comment.