summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fixedarray.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2011-12-14 10:13:21 -0500
committerNeil Moore <neil@s-z.org>2011-12-14 10:21:56 -0500
commitdc3ddd63a962733363e979a08e59bb4c8145be13 (patch)
tree0a5065b5f505930dea45d2264e7301412e613c49 /crawl-ref/source/fixedarray.h
parentcc5fa749cd5b93f8700b936d6f3530299c57a475 (diff)
downloadcrawl-ref-dc3ddd63a962733363e979a08e59bb4c8145be13.tar.gz
crawl-ref-dc3ddd63a962733363e979a08e59bb4c8145be13.zip
Coding style fixes: braces to their own line.
The exceptions are extern "C", multi-line macros, and json.{cc,h}.
Diffstat (limited to 'crawl-ref/source/fixedarray.h')
-rw-r--r--crawl-ref/source/fixedarray.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/fixedarray.h b/crawl-ref/source/fixedarray.h
index 59911c7099..89adaa6cd3 100644
--- a/crawl-ref/source/fixedarray.h
+++ b/crawl-ref/source/fixedarray.h
@@ -81,7 +81,8 @@ protected:
};
// A fixed array centered around the origin.
-template <class TYPE, int RADIUS> class SquareArray {
+template <class TYPE, int RADIUS> class SquareArray
+{
//-----------------------------------
// Types
//