diff options
author | kohanis <kohanis@ya.ru> | 2022-11-09 17:24:27 +0300 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2022-11-09 16:04:01 +0100 |
commit | ed3aa90cd4c4e1e59d15942414a6dbc586ac1ed4 (patch) | |
tree | e0feada4289146f049d8534ce1dc65d93c1efb51 /bindgen-tests/tests/headers/constructor-tp.hpp | |
parent | c03b37697a1e117995ea76203e5c0ce7d6696c4e (diff) |
Fix inline function identification
Diffstat (limited to 'bindgen-tests/tests/headers/constructor-tp.hpp')
-rw-r--r-- | bindgen-tests/tests/headers/constructor-tp.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bindgen-tests/tests/headers/constructor-tp.hpp b/bindgen-tests/tests/headers/constructor-tp.hpp index 6e55ea78..3b5d5407 100644 --- a/bindgen-tests/tests/headers/constructor-tp.hpp +++ b/bindgen-tests/tests/headers/constructor-tp.hpp @@ -8,7 +8,7 @@ public: }; template<typename T> -inline void +void Foo<T>::doBaz() { } @@ -21,6 +21,5 @@ template<typename T> Foo<T>::Foo() { } -inline Bar::Bar() { } |