diff options
author | Neil <nyamatongwe@gmail.com> | 2013-07-21 14:30:14 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-07-21 14:30:14 +1000 |
commit | 7ab4b5ab14232d2a00246a8e6c77c73c5c8b78b7 (patch) | |
tree | d9fa23b4d42123a37e709630255b39336c295802 /src/SplitVector.h | |
parent | 68e4223dfcf19afec969e06727ff2fb22cf48420 (diff) | |
download | scintilla-mirror-7ab4b5ab14232d2a00246a8e6c77c73c5c8b78b7.tar.gz |
Standardising header guards and namespaces.
Diffstat (limited to 'src/SplitVector.h')
-rw-r--r-- | src/SplitVector.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/SplitVector.h b/src/SplitVector.h index 502101b6c..0c6e350cb 100644 --- a/src/SplitVector.h +++ b/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 |