From ceb15d407df6a5ee5f43506ffb14679e2fbe344c Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Mon, 3 Jun 2013 22:08:19 -0700 Subject: [PATCH] removed assert --- libraries/shared/src/SharedUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/SharedUtil.cpp b/libraries/shared/src/SharedUtil.cpp index 10967ea3e7..08b84e2b7e 100644 --- a/libraries/shared/src/SharedUtil.cpp +++ b/libraries/shared/src/SharedUtil.cpp @@ -106,7 +106,7 @@ int getSemiNibbleAt(unsigned char& byte, int bitIndex) { } void setSemiNibbleAt(unsigned char& byte, int bitIndex, int value) { - assert(value <= 3 && value >= 0); + //assert(value <= 3 && value >= 0); byte += ((value & 3) << (7 - bitIndex)); // semi-nibbles store 00, 01, 10, or 11 }