Skip to content

Commit

Permalink
Fixing header guards
Browse files Browse the repository at this point in the history
  • Loading branch information
colincornaby committed Oct 20, 2023
1 parent b870bc4 commit d72b27f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/

#ifndef plMetalPipelineState_hpp
#define plMetalPipelineState_hpp
#ifndef plMetalPipelineState_h
#define plMetalPipelineState_h

#include <stdio.h>

Expand Down Expand Up @@ -401,4 +401,4 @@ class plMetalClearPipelineState : public plMetalPipelineState
bool fShouldClearDepth;
};

#endif /* plMetalPipelineState_hpp */
#endif /* plMetalPipelineState_h */
6 changes: 3 additions & 3 deletions Sources/Plasma/FeatureLib/pfMetalPipeline/plMetalTextFont.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#ifndef _plDXTextFont_h
#define _plDXTextFont_h
#ifndef _plMetalTextFont_h
#define _plMetalTextFont_h

#include <Metal/Metal.hpp>

Expand Down Expand Up @@ -99,4 +99,4 @@ class plMetalTextFont : public plTextFont
void DestroyObjects() override;
};

#endif // _plDXTextFont_h
#endif // _plMetalTextFont_h

0 comments on commit d72b27f

Please sign in to comment.