diff --git a/src/cmd_helper.h b/src/cmd_helper.h --- a/src/cmd_helper.h +++ b/src/cmd_helper.h @@ -21,7 +21,7 @@ template<> struct ExtractBits 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); }