summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/FixVec.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/FixVec.h')
-rw-r--r--crawl-ref/source/FixVec.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/crawl-ref/source/FixVec.h b/crawl-ref/source/FixVec.h
index 176ced5cf4..0086750ae3 100644
--- a/crawl-ref/source/FixVec.h
+++ b/crawl-ref/source/FixVec.h
@@ -22,7 +22,8 @@
// class FixedVector
// ==========================================================================
-template <class TYPE, int SIZE> class FixedVector {
+template <class TYPE, int SIZE> class FixedVector
+{
//-----------------------------------
// Types
@@ -48,7 +49,8 @@ public:
FixedVector() {}
- FixedVector(TYPE def) : mData() {
+ FixedVector(TYPE def) : mData()
+ {
init(def);
}
@@ -112,10 +114,10 @@ FixedVector<TYPE, SIZE>::FixedVector(TYPE value0, TYPE value1, ...)
va_list ap;
va_start(ap, value1); // second argument is last fixed parameter
- for (int index = 2; index < SIZE; index++) {
- TYPE value = va_arg(ap, TYPE);
-
- mData[index] = value;
+ for (int index = 2; index < SIZE; index++)
+ {
+ TYPE value = va_arg(ap, TYPE);
+ mData[index] = value;
}
va_end(ap);