diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2016-12-15 16:57:32 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2016-12-15 16:57:32 +0100 |
commit | 31bd2d3a1ffa47e15b0701761966fc836c9da99d (patch) | |
tree | 7a53b093e80237a38e378b6d6d9d6b7105dcd645 /libbindgen/tests/headers | |
parent | 0ec5a6aa25bda273781a6569107b82c65cf004c3 (diff) |
ir: Don't parse standalone destructors.
Diffstat (limited to 'libbindgen/tests/headers')
-rw-r--r-- | libbindgen/tests/headers/public-dtor.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libbindgen/tests/headers/public-dtor.hpp b/libbindgen/tests/headers/public-dtor.hpp new file mode 100644 index 00000000..5d4fb592 --- /dev/null +++ b/libbindgen/tests/headers/public-dtor.hpp @@ -0,0 +1,15 @@ + + +namespace cv { +class String { +public: + ~String(); +}; + + +inline +String::~String() +{ +} + +} |