commit | ceb4619b815dfec170e9bd76000221fb2edd7911 | [log] [tgz] |
---|---|---|
author | Sharvil Nanavati <sharvil@google.com> | Mon Dec 29 04:23:30 2014 -0800 |
committer | Andre Eisenbach <eisenbach@google.com> | Mon Mar 16 16:51:42 2015 -0700 |
tree | b0ef3ebcafc9d2d252db74c086bbe614f1c90f7a | |
parent | 85b1baf4339f6345ea8b4df6b6690829dc60b3c7 [diff] |
Eliminate unusable wcassert code in favor of plain old C asssert. The WC_* macros only expand to something meaningful when _DEBUG is also defined. However, on enabling _DEBUG, bluedroid fails to build because the wc_assert function is not defined anywhere. We can get what I imagine is the equivalent behavior by switching over to the standard C assert macro.