commit | 181932fad8b91dc6831222e5b616574c39a21565 | [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 | 9e5c6a2e2e5bdf56707e22e72f0bbf5916f86a3e | |
parent | 1ece3a37fca9ced4f9f3c3a66fac99b0e5cabf92 [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.