diff options
Diffstat (limited to 'src/SVector.h')
-rw-r--r-- | src/SVector.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/SVector.h b/src/SVector.h index c8edb513b..9f56da528 100644 --- a/src/SVector.h +++ b/src/SVector.h @@ -8,6 +8,10 @@ #ifndef SVECTOR_H #define SVECTOR_H +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif + /** * A simple expandable integer vector. * Storage not allocated for elements until an element is used. @@ -124,4 +128,8 @@ public: } }; +#ifdef SCI_NAMESPACE +} +#endif + #endif |