commit | d4a809fe34daa5f02bfb253e96a58e61ef36c98a | [log] [tgz] |
---|---|---|
author | Ruchi Kandoi <kandoiruchi@google.com> | Wed Jan 04 10:04:48 2017 -0800 |
committer | Ruchi Kandoi <kandoiruchi@google.com> | Mon Jan 09 10:20:27 2017 -0800 |
tree | 5f48737ba93a93668706ab00c255ba527577f0a2 | |
parent | 04fbde0f2e1f5edac85cb1c4bc04511aa5b64240 [diff] |
Replace TRUE/FALSE directives with standard true/false @@ expression E; @@ ( -E = TRUE +E = true | -E == TRUE +E == true | -E != TRUE +E != true | -E ? TRUE : FALSE +E ? true : false ) @@ @@ ( -return TRUE; +return true; ) @@ identifier fn; @@ fn (..., -TRUE, +true, ...) type T1; identifier i1; @@ T1 i1 = { - TRUE, + true, ...}; Test: Compiles Change-Id: I633924fe6bc6a4c3f50634c5e1c6d75fb1d3258f Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>