diff options
author | Urgau <3616612+Urgau@users.noreply.github.com> | 2023-02-16 17:16:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-16 11:16:34 -0500 |
commit | 62d91c5dcbf84bb9cda59996d60ab33df321e9f2 (patch) | |
tree | bf946f62509625e67636aade62d097b072c51504 /bindgen-tests/tests/headers/wrap-static-fns.h | |
parent | 52a8cde6a4ddd5dd9e130f2874816d4afd910cb0 (diff) |
Also de-duplicate functions with wrapped static functions feature (#2416)
Diffstat (limited to 'bindgen-tests/tests/headers/wrap-static-fns.h')
-rw-r--r-- | bindgen-tests/tests/headers/wrap-static-fns.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/wrap-static-fns.h b/bindgen-tests/tests/headers/wrap-static-fns.h index 03892315..faa7b7f1 100644 --- a/bindgen-tests/tests/headers/wrap-static-fns.h +++ b/bindgen-tests/tests/headers/wrap-static-fns.h @@ -3,6 +3,7 @@ static inline int foo() { return 11; } +static int bar(); static int bar() { return 1; } |