Skip to content

Commit f0bffed

Browse files
committed
Fixing missing guards
1 parent 8997ff0 commit f0bffed

File tree

5 files changed

+11
-0
lines changed

5 files changed

+11
-0
lines changed

Src/Common/AppSettingsData.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#pragma once
2+
13
#include "AppSettingsHeader.h"
24
#include "../DasherCore/Parameters.h"
35

Src/Common/OpenGLScreen.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
// Created by Alan Lawrence on 20/03/2009.
66
// Copyright 2009 Cavendish Laboratory. All rights reserved.
77
//
8+
9+
#pragma once
10+
811
#if TARGET_OS_IPHONE
912
#import <OpenGLES/ES1/gl.h>
1013
#else

Src/Common/SBTree.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
*
88
*/
99

10+
#pragma once
11+
1012
class SBTree {
1113
public:
1214
SBTree(int iValue);

Src/Common/Unicode/ConvertUTF.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* remains attached.
2121
*/
2222

23+
#pragma once
24+
2325
/* ---------------------------------------------------------------------
2426
2527
Conversions between UTF32, UTF-16, and UTF-8. Header file.

Src/Common/round.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#pragma once
2+
13
extern "C" {
24
double round(double);
35
}

0 commit comments

Comments
 (0)