aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RunStyles.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/RunStyles.h')
-rw-r--r--src/RunStyles.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/RunStyles.h b/src/RunStyles.h
index 009bb6739..f3f9fe314 100644
--- a/src/RunStyles.h
+++ b/src/RunStyles.h
@@ -7,6 +7,10 @@
/// Styling buffer using one element for each run rather than using
/// a filled buffer.
+#ifdef SCI_NAMESPACE
+namespace Scintilla {
+#endif
+
class RunStyles {
public:
Partitioning *starts;
@@ -30,3 +34,7 @@ public:
void DeleteAll();
void DeleteRange(int position, int deleteLength);
};
+
+#ifdef SCI_NAMESPACE
+}
+#endif