diff options
Diffstat (limited to 'scintilla/src/SplitVector.h')
-rw-r--r-- | scintilla/src/SplitVector.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scintilla/src/SplitVector.h b/scintilla/src/SplitVector.h index 5b8876c..c52e84b 100644 --- a/scintilla/src/SplitVector.h +++ b/scintilla/src/SplitVector.h @@ -9,6 +9,10 @@ #ifndef SPLITVECTOR_H
#define SPLITVECTOR_H
+#ifdef SCI_NAMESPACE
+namespace Scintilla {
+#endif
+
template <typename T>
class SplitVector {
protected:
@@ -280,4 +284,8 @@ public: }
};
+#ifdef SCI_NAMESPACE
+}
+#endif
+
#endif
|