aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2008-05-17 01:27:53 +0000
committernyamatongwe <unknown>2008-05-17 01:27:53 +0000
commit6d9be0908f751d392bcc66c5e8edda2872f48128 (patch)
treeac9ad2a209472313857ad58a9cd3cc69f6215284
parent3b9bc548c2a5c705895c294e6618fcae901ee347 (diff)
downloadscintilla-mirror-6d9be0908f751d392bcc66c5e8edda2872f48128.tar.gz
Added include guard.
-rw-r--r--src/RunStyles.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/RunStyles.h b/src/RunStyles.h
index f16421fd0..0a333ca2a 100644
--- a/src/RunStyles.h
+++ b/src/RunStyles.h
@@ -7,6 +7,9 @@
/// Styling buffer using one element for each run rather than using
/// a filled buffer.
+#ifndef RUNSTYLES_H
+#define RUNSTYLES_H
+
#ifdef SCI_NAMESPACE
namespace Scintilla {
#endif
@@ -39,3 +42,5 @@ public:
#ifdef SCI_NAMESPACE
}
#endif
+
+#endif