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 | c66233079aac2dc65825c9b9507b39ff19cf0d50 (patch) | |
tree | e4377cdb815525eafb67fbc4c22997367c812051 /src/SplitVector.h | |
parent | 413b4f07737f29a3e3275b8a83170505ee137c67 (diff) | |
download | scintilla-mirror-c66233079aac2dc65825c9b9507b39ff19cf0d50.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 |