commit | 958f3b31c49e1975117898a54d6e7c1fe2b386ec | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Fri Jun 03 13:44:00 2016 -0700 |
committer | Josh Gao <jmgao@google.com> | Fri Jun 03 15:01:19 2016 -0700 |
tree | a226bca1c97221743727d9421fe672d368e404e4 | |
parent | 173e7c07539af0910d170cd17385cba6762cfbc8 [diff] [blame] |
versioner: fix false positive with functions only available as inlines. Change-Id: I09cc335b4006c6ceafcbd1bec9e50161f8262942
diff --git a/tools/versioner/tests/inline_unavailable/headers/foo.h b/tools/versioner/tests/inline_unavailable/headers/foo.h new file mode 100644 index 0000000..6800dd0 --- /dev/null +++ b/tools/versioner/tests/inline_unavailable/headers/foo.h
@@ -0,0 +1,3 @@ +static int foo() __attribute__((availability(android, introduced = 9))) { + return 0; +}