aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2008-05-17 01:27:53 +0000
committernyamatongwe <devnull@localhost>2008-05-17 01:27:53 +0000
commitd8e80e8b66f3e1845a7f56449eba5021b05fb032 (patch)
treeac9ad2a209472313857ad58a9cd3cc69f6215284
parenta9dc53441969750213b6d9d25126951d3f418f59 (diff)
downloadscintilla-mirror-d8e80e8b66f3e1845a7f56449eba5021b05fb032.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