aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Partitioning.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-07-21 14:30:14 +1000
committerNeil <nyamatongwe@gmail.com>2013-07-21 14:30:14 +1000
commit7ab4b5ab14232d2a00246a8e6c77c73c5c8b78b7 (patch)
treed9fa23b4d42123a37e709630255b39336c295802 /src/Partitioning.h
parent68e4223dfcf19afec969e06727ff2fb22cf48420 (diff)
downloadscintilla-mirror-7ab4b5ab14232d2a00246a8e6c77c73c5c8b78b7.tar.gz
Standardising header guards and namespaces.
Diffstat (limited to 'src/Partitioning.h')
-rw-r--r--src/Partitioning.h9
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