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/Partitioning.h | |
parent | 413b4f07737f29a3e3275b8a83170505ee137c67 (diff) | |
download | scintilla-mirror-c66233079aac2dc65825c9b9507b39ff19cf0d50.tar.gz |
Standardising header guards and namespaces.
Diffstat (limited to 'src/Partitioning.h')
-rw-r--r-- | src/Partitioning.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Partitioning.h b/src/Partitioning.h index 07f3c5d7b..18bcbc004 100644 --- a/src/Partitioning.h +++ b/src/Partitioning.h @@ -8,6 +8,10 @@ #ifndef PARTITIONING_H #define PARTITIONING_H +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif + /// A split vector of integers with a method for adding a value to all elements /// in a range. /// Used by the Partitioning class. @@ -186,4 +190,9 @@ public: } }; + +#ifdef SCI_NAMESPACE +} +#endif + #endif |