summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/NewKit/Array.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/NewKit/Array.h')
-rw-r--r--dev/Kernel/NewKit/Array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/Kernel/NewKit/Array.h b/dev/Kernel/NewKit/Array.h
index aab3ba91..43c67586 100644
--- a/dev/Kernel/NewKit/Array.h
+++ b/dev/Kernel/NewKit/Array.h
@@ -24,7 +24,7 @@ namespace Kernel
T& operator[](const SizeT& at)
{
- MUST_PASS(at < this->Count());
+ MUST_PASS(at < this->Count());
return fArray[at];
}