From 9d018723b7bab3341cd455708a6cd98283d75c34 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 14 Mar 2009 18:16:29 +0000 Subject: (svn r15711) -Codechange: lots of whitespace cleanup/fixes --- src/misc/dbg_helpers.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/misc/dbg_helpers.h') diff --git a/src/misc/dbg_helpers.h b/src/misc/dbg_helpers.h index 0cbb1c077..3816ac628 100644 --- a/src/misc/dbg_helpers.h +++ b/src/misc/dbg_helpers.h @@ -23,9 +23,9 @@ template struct ArrayT { /** -* Helper template function that returns item of array at given index -* or t_unk when index is out of bounds. -*/ + * Helper template function that returns item of array at given index + * or t_unk when index is out of bounds. + */ template inline typename ArrayT::item_t ItemAtT(E idx, T &t, typename ArrayT::item_t t_unk) { @@ -36,10 +36,10 @@ inline typename ArrayT::item_t ItemAtT(E idx, T &t, typename ArrayT::item_ } /** -* Helper template function that returns item of array at given index -* or t_inv when index == idx_inv -* or t_unk when index is out of bounds. -*/ + * Helper template function that returns item of array at given index + * or t_inv when index == idx_inv + * or t_unk when index is out of bounds. + */ template inline typename ArrayT::item_t ItemAtT(E idx, T &t, typename ArrayT::item_t t_unk, E idx_inv, typename ArrayT::item_t t_inv) { @@ -53,11 +53,11 @@ inline typename ArrayT::item_t ItemAtT(E idx, T &t, typename ArrayT::item_ } /** -* Helper template function that returns compound bitfield name that is -* concatenation of names of each set bit in the given value -* or t_inv when index == idx_inv -* or t_unk when index is out of bounds. -*/ + * Helper template function that returns compound bitfield name that is + * concatenation of names of each set bit in the given value + * or t_inv when index == idx_inv + * or t_unk when index is out of bounds. + */ template inline CStrA ComposeNameT(E value, T &t, const char *t_unk, E val_inv, const char *name_inv) { -- cgit v1.2.3-54-g00ecf