From b25a4f8231f3ded44038ea454a3d4c6a2dc9217d Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 15 Mar 2009 00:32:18 +0000 Subject: (svn r15718) -Cleanup: apply some comment coding style on the rest of the sources too --- src/cmd_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cmd_helper.h') diff --git a/src/cmd_helper.h b/src/cmd_helper.h index 88097d935..9b5c12a06 100644 --- a/src/cmd_helper.h +++ b/src/cmd_helper.h @@ -21,7 +21,7 @@ template<> struct ExtractBits { static const uint Count = 4; }; template static inline T Extract(U v) { - // Check if there are enough bits in v + /* Check if there are enough bits in v */ ExtractValid::Count <= sizeof(U) * 8>(); return (T)GB(v, N, ExtractBits::Count); } -- cgit v1.2.3-54-g00ecf