Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to m-c f1082516d62f3b8ff6ed1ec44c1e2328bd2a3977 #17

Merged
merged 7 commits into from May 30, 2019

Conversation

@kvark
Copy link
Member

kvark commented May 9, 2019

No description provided.

@kvark kvark requested a review from SimonSapin May 9, 2019
@kvark
Copy link
Member Author

kvark commented May 9, 2019

We are a bit blocked on using Wrench on Windows for replaying captures with dual-source blending...

@jdm
Copy link
Member

jdm commented May 9, 2019

Try adding image: Visual Studio 2017 to https://github.com/servo/mozangle/blob/master/appveyor.yml

build.rs Outdated
@@ -18,7 +18,7 @@ fn build_egl(target: &str) {

let mut build = cc::Build::new();

let data = build_data::EGL;
let data = build_data::ANGLE;

This comment has been minimized.

@jdm

jdm May 9, 2019

Member

I'm concerned that some of these changes seem to revert the changes from #15 that generated libEGL.dll separates from the rest of angle on windows.

This comment has been minimized.

@kvark

kvark May 9, 2019

Author Member

Yes, that's a fair concern. I don't know much about what this is meant to do, and I didn't try to investigate further. I see that the script no longer generates EGL constant, so not sure how build.rs is supposed to work?

This comment has been minimized.

@jdm

jdm May 9, 2019

Member

I didn't realize that build_data was generated, so I didn't update the script. My changes in #15 separated the libEGL parts of the build from the rest of angle, producing a DLL which could be used by Servo. This replicates the effect of the moz.build setup that Gecko uses to produce it as well.

This comment has been minimized.

@kvark

kvark May 9, 2019

Author Member

I see. So it sounds like #15 needs to be mostly rewritten to affect the generate_build_data.py instead of build_data.rs

@bors-servo
Copy link
Contributor

bors-servo commented May 9, 2019

The latest upstream changes (presumably #18) made this pull request unmergeable. Please resolve the merge conflicts.

@kvark kvark force-pushed the kvark:update branch from b947d2a to 7e063fb May 10, 2019
@kvark
Copy link
Member Author

kvark commented May 10, 2019

Rebased now, PTAL.

@jdm
Copy link
Member

jdm commented May 10, 2019

Travis is very unhappy. We may need to use clang instead of gcc, or use a more recent std=c++ flag than 11?

@jdm
Copy link
Member

jdm commented May 10, 2019

Lots more unhappiness.

@jdm
Copy link
Member

jdm commented May 30, 2019

Windows and mac are hitting a problem running tests:

     Running `/Users/travis/build/servo/mozangle/target/debug/deps/mozangle-6b2ad9574847d43f`
running 5 tests
test shaders::ffi::bindgen_test_layout_ShBuiltInResources ... ok
test tests::test_linkage ... ok
error: process didn't exit successfully: `/Users/travis/build/servo/mozangle/target/debug/deps/mozangle-6b2ad9574847d43f` (signal: 11, SIGSEGV: invalid memory reference)
The command "cargo test --verbose" exited with 101.

Linux is still stuck on a collision with libc math macros:

cargo:warning=gfx/angle/checkout/src/compiler/translator/SymbolTable_autogen.cpp:1180:33: error: expected unqualified-id
cargo:warning=constexpr const ImmutableString isinf("isinf");
cargo:warning=                                ^
cargo:warning=/usr/include/math.h:266:7: note: expanded from macro 'isinf'
cargo:warning=     (sizeof (x) == sizeof (float)                                            \
cargo:warning=      ^
cargo:warning=gfx/angle/checkout/src/compiler/translator/SymbolTable_autogen.cpp:1180:33: error: expected ')'
cargo:warning=/usr/include/math.h:266:7: note: expanded from macro 'isinf'
cargo:warning=     (sizeof (x) == sizeof (float)                                            \
cargo:warning=      ^
cargo:warning=gfx/angle/checkout/src/compiler/translator/SymbolTable_autogen.cpp:1180:33: note: to match this '('
cargo:warning=/usr/include/math.h:266:6: note: expanded from macro 'isinf'
cargo:warning=     (sizeof (x) == sizeof (float)                                            \
cargo:warning=     ^
cargo:warning=gfx/angle/checkout/src/compiler/translator/SymbolTable_autogen.cpp:1181:33: error: expected unqualified-id
cargo:warning=constexpr const ImmutableString isnan("isnan");
cargo:warning=                                ^
cargo:warning=/usr/include/math.h:254:7: note: expanded from macro 'isnan'
cargo:warning=     (sizeof (x) == sizeof (float)                                            \
cargo:warning=      ^
cargo:warning=gfx/angle/checkout/src/compiler/translator/SymbolTable_autogen.cpp:1181:33: error: expected ')'
cargo:warning=/usr/include/math.h:254:7: note: expanded from macro 'isnan'
cargo:warning=     (sizeof (x) == sizeof (float)                                            \
cargo:warning=      ^
cargo:warning=gfx/angle/checkout/src/compiler/translator/SymbolTable_autogen.cpp:1181:33: note: to match this '('
cargo:warning=/usr/include/math.h:254:6: note: expanded from macro 'isnan'
cargo:warning=     (sizeof (x) == sizeof (float)                                            \
cargo:warning=     ^
cargo:warning=gfx/angle/checkout/src/compiler/translator/SymbolTable_autogen.cpp:4774:18: error: no member named 'isnan' in namespace 'sh::BuiltInName'
cargo:warning=    BuiltInName::isnan,
cargo:warning=    ~~~~~~~~~~~~~^
@jdm
Copy link
Member

jdm commented May 30, 2019

Trying to update the generated bindings yielded:

[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__get_deleter kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:3575:41, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__shared_ptr_pointer@F@__get_deleter#&1$@N@std@S@type_info#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__on_zero_shared kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:3584:41, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__shared_ptr_pointer@F@__on_zero_shared#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__on_zero_shared_weak kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:3592:41, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__shared_ptr_pointer@F@__on_zero_shared_weak#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__on_zero_shared kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:3654:36, usr: Some("c:@N@std@N@__1@ST>2#T#T@__shared_ptr_emplace@F@__on_zero_shared#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__on_zero_shared_weak kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:3661:36, usr: Some("c:@N@std@N@__1@ST>2#T#T@__shared_ptr_emplace@F@__on_zero_shared_weak#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(shared_ptr<_Tp> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:3992:18, usr: Some("c:@N@std@N@__1@ST>1#T@shared_ptr@F@shared_ptr#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(shared_ptr<_Tp> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:4001:18, usr: Some("c:@N@std@N@__1@ST>1#T@shared_ptr@F@shared_ptr#n#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(shared_ptr<_Tp> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:4136:18, usr: Some("c:@N@std@N@__1@ST>1#T@shared_ptr@F@shared_ptr#&1>@N@std@N@__1@ST>1#T@shared_ptr1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(shared_ptr<_Tp> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:4161:18, usr: Some("c:@N@std@N@__1@ST>1#T@shared_ptr@F@shared_ptr#&&>@N@std@N@__1@ST>1#T@shared_ptr1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~shared_ptr<_Tp> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:4465:18, usr: Some("c:@N@std@N@__1@ST>1#T@shared_ptr@F@~shared_ptr#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:4592:18, usr: Some("c:@N@std@N@__1@ST>1#T@shared_ptr@F@swap#&>@N@std@N@__1@ST>1#T@shared_ptr1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(reset kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:4601:18, usr: Some("c:@N@std@N@__1@ST>1#T@shared_ptr@F@reset#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(weak_ptr<_Tp> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:5034:16, usr: Some("c:@N@std@N@__1@ST>1#T@weak_ptr@F@weak_ptr#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(weak_ptr<_Tp> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:5042:16, usr: Some("c:@N@std@N@__1@ST>1#T@weak_ptr@F@weak_ptr#&1>@N@std@N@__1@ST>1#T@weak_ptr1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(weak_ptr<_Tp> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:5080:16, usr: Some("c:@N@std@N@__1@ST>1#T@weak_ptr@F@weak_ptr#&&>@N@std@N@__1@ST>1#T@weak_ptr1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~weak_ptr<_Tp> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/memory:5104:16, usr: Some("c:@N@std@N@__1@ST>1#T@weak_ptr@F@~weak_ptr#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:5177:16, usr: Some("c:@N@std@N@__1@ST>1#T@weak_ptr@F@swap#&>@N@std@N@__1@ST>1#T@weak_ptr1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(reset kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:5194:16, usr: Some("c:@N@std@N@__1@ST>1#T@weak_ptr@F@reset#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(lock kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/memory:5212:16, usr: Some("c:@N@std@N@__1@ST>1#T@weak_ptr@F@lock#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__independent_bits_engine<_Engine, _UIntType> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/algorithm:2971:7, usr: Some("c:@N@std@N@__1@ST>2#T#T@__independent_bits_engine@F@__independent_bits_engine#&t0.0#l#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__eval kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/algorithm:3007:48, usr: Some("c:@N@std@N@__1@ST>2#T#T@__independent_bits_engine@F@__eval#$@N@std@N@__1@S@integral_constant>#b#Vb0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__eval kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/algorithm:3014:48, usr: Some("c:@N@std@N@__1@ST>2#T#T@__independent_bits_engine@F@__eval#$@N@std@N@__1@S@integral_constant>#b#Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/array:212:20, usr: Some("c:@N@std@N@__1@ST>2#T#Nl@array@F@at#l#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/array:223:20, usr: Some("c:@N@std@N@__1@ST>2#T#Nl@array@F@at#l#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__tree<_Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1495:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__tree#&1t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__tree<_Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1505:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__tree#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__tree<_Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1514:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__tree#&1t0.1#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__detach kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1526:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__detach#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__detach kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1547:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__detach#^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__tree<_Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1672:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__tree#&1>@N@std@N@__1@ST>3#T#T#T@__tree3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__tree<_Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1683:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__tree#&&>@N@std@N@__1@ST>3#T#T#T@__tree3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__tree<_Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1703:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__tree#&&>@N@std@N@__1@ST>3#T#T#T@__tree3t0.0t0.1t0.2#&1S5_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1730:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__move_assign#&>@N@std@N@__1@ST>3#T#T#T@__tree3t0.0t0.1t0.2#$@N@std@N@__1@S@integral_constant>#b#Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1752:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__move_assign#&>@N@std@N@__1@ST>3#T#T#T@__tree3t0.0t0.1t0.2#$@N@std@N@__1@S@integral_constant>#b#Vb0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~__tree<_Tp, _Compare, _Allocator> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1813:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@~__tree#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(destroy kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1826:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@destroy#^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1840:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@swap#&>@N@std@N@__1@ST>3#T#T#T@__tree3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(clear kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1868:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@clear#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__find_leaf_low kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1881:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__find_leaf_low#&^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__parent_pointer#&1^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::key_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__find_leaf_high kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1920:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__find_leaf_high#&^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__parent_pointer#&1^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::key_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__find_leaf kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:1962:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__find_leaf#>@N@std@N@__1@ST>3#T#T#T@__tree_const_iterator3t0.0^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer^allocator_traits<type-parameter-0-2>:::difference_type#&^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__parent_pointer#&1^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::key_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__insert_node_at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2103:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__insert_node_at#^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__parent_pointer#&^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_base_pointer#S2_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__node_insert_unique kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2302:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__node_insert_unique#^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__node_insert_unique kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2319:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__node_insert_unique#>@N@std@N@__1@ST>3#T#T#T@__tree_const_iterator3t0.0^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer^allocator_traits<type-parameter-0-2>:::difference_type#S2_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__node_insert_multi kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2336:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__node_insert_multi#^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__node_insert_multi kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2346:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@__node_insert_multi#>@N@std@N@__1@ST>3#T#T#T@__tree_const_iterator3t0.0^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer^allocator_traits<type-parameter-0-2>:::difference_type#S2_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2357:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@erase#>@N@std@N@__1@ST>3#T#T#T@__tree_const_iterator3t0.0^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer^allocator_traits<type-parameter-0-2>:::difference_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2376:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@erase#>@N@std@N@__1@ST>3#T#T#T@__tree_const_iterator3t0.0^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer^allocator_traits<type-parameter-0-2>:::difference_type#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(remove kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__tree:2662:36, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@__tree@F@remove#>@N@std@N@__1@ST>3#T#T#T@__tree_const_iterator3t0.0^__make_tree_node_types<type-parameter-0-0, typename allocator_traits<type-parameter-0-2>::void_pointer>::type:::__node_pointer^allocator_traits<type-parameter-0-2>:::difference_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__clone kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1521:41, usr: Some("c:@N@std@N@__1@N@__function@SP>4#T#T#T#pT@__func>#t0.0#t0.1#Ft0.2(#Pt0.3)@F@__clone#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__clone kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1534:41, usr: Some("c:@N@std@N@__1@N@__function@SP>4#T#T#T#pT@__func>#t0.0#t0.1#Ft0.2(#Pt0.3)@F@__clone#*>@N@std@N@__1@N@__function@ST>1#T@__base1S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(destroy kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1541:41, usr: Some("c:@N@std@N@__1@N@__function@SP>4#T#T#T#pT@__func>#t0.0#t0.1#Ft0.2(#Pt0.3)@F@destroy#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(destroy_deallocate kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1548:41, usr: Some("c:@N@std@N@__1@N@__function@SP>4#T#T#T#pT@__func>#t0.0#t0.1#Ft0.2(#Pt0.3)@F@destroy_deallocate#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(target kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1569:41, usr: Some("c:@N@std@N@__1@N@__function@SP>4#T#T#T#pT@__func>#t0.0#t0.1#Ft0.2(#Pt0.3)@F@target#&1$@N@std@S@type_info#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(target_type kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1578:41, usr: Some("c:@N@std@N@__1@N@__function@SP>4#T#T#T#pT@__func>#t0.0#t0.1#Ft0.2(#Pt0.3)@F@target_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(function<type-parameter-0-0 (type-parameter-0-1...)> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/functional:1688:30, usr: Some("c:@N@std@N@__1@SP>2#T#pT@function>#Ft0.0(#Pt0.1)@F@function#&1>@N@std@N@__1@ST>1#T@function1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(function<type-parameter-0-0 (type-parameter-0-1...)> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/functional:1720:30, usr: Some("c:@N@std@N@__1@SP>2#T#pT@function>#Ft0.0(#Pt0.1)@F@function#&&>@N@std@N@__1@ST>1#T@function1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~function<type-parameter-0-0 (type-parameter-0-1...)> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/functional:1863:30, usr: Some("c:@N@std@N@__1@SP>2#T#pT@function>#Ft0.0(#Pt0.1)@F@~function#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1873:30, usr: Some("c:@N@std@N@__1@SP>2#T#pT@function>#Ft0.0(#Pt0.1)@F@swap#&>@N@std@N@__1@ST>1#T@function1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(target_type kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/functional:1923:30, usr: Some("c:@N@std@N@__1@SP>2#T#pT@function>#Ft0.0(#Pt0.1)@F@target_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(map<_Key, _Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/map:1303:39, usr: Some("c:@N@std@N@__1@ST>4#T#T#T#T@map@F@map#&&>@N@std@N@__1@ST>4#T#T#T#T@map4t0.0t0.1t0.2t0.3#&1S6_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/map:1370:39, usr: Some("c:@N@std@N@__1@ST>4#T#T#T#T@map@F@at#&1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/map:1383:39, usr: Some("c:@N@std@N@__1@ST>4#T#T#T#T@map@F@at#&1t0.0#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(multimap<_Key, _Tp, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/map:1847:44, usr: Some("c:@N@std@N@__1@ST>4#T#T#T#T@multimap@F@multimap#&&>@N@std@N@__1@ST>4#T#T#T#T@multimap4t0.0t0.1t0.2t0.3#&1S6_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(set<_Key, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/set:729:34, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@set@F@set#&&>@N@std@N@__1@ST>3#T#T#T@set3t0.0t0.1t0.2#&1S5_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(multiset<_Key, _Compare, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/set:1139:39, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@multiset@F@multiset#&&>@N@std@N@__1@ST>3#T#T#T@multiset3t0.0t0.1t0.2#&1S5_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:116:22, usr: Some("c:@N@std@N@__1@ST>1#T@char_traits@F@compare#*1t0.0#S0_#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(length kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:131:22, usr: Some("c:@N@std@N@__1@ST>1#T@char_traits@F@length#*1t0.0#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:142:22, usr: Some("c:@N@std@N@__1@ST>1#T@char_traits@F@find#*1t0.0#l#&1S1_#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(move kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:155:22, usr: Some("c:@N@std@N@__1@ST>1#T@char_traits@F@move#*t0.0#*1S1_#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(copy kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:176:22, usr: Some("c:@N@std@N@__1@ST>1#T@char_traits@F@copy#*t0.0#*1S1_#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:188:22, usr: Some("c:@N@std@N@__1@ST>1#T@char_traits@F@assign#*t0.0#l#S1_#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:244:20, usr: Some("c:@N@std@N@__1@S@char_traits>#C@F@compare#*1C#S0_#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:266:20, usr: Some("c:@N@std@N@__1@S@char_traits>#C@F@find#*1C#l#&1C#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:334:23, usr: Some("c:@N@std@N@__1@S@char_traits>#W@F@compare#*1W#S0_#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(length kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:356:23, usr: Some("c:@N@std@N@__1@S@char_traits>#W@F@length#*1W#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:372:23, usr: Some("c:@N@std@N@__1@S@char_traits>#W@F@find#*1W#l#&1W#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:437:24, usr: Some("c:@N@std@N@__1@S@char_traits>#q@F@compare#*1q#S0_#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(length kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:451:24, usr: Some("c:@N@std@N@__1@S@char_traits>#q@F@length#*1q#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:461:24, usr: Some("c:@N@std@N@__1@S@char_traits>#q@F@find#*1q#l#&1q#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(move kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:474:24, usr: Some("c:@N@std@N@__1@S@char_traits>#q@F@move#*q#*1q#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(copy kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:494:24, usr: Some("c:@N@std@N@__1@S@char_traits>#q@F@copy#*q#*1q#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:505:24, usr: Some("c:@N@std@N@__1@S@char_traits>#q@F@assign#*q#l#q#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:556:24, usr: Some("c:@N@std@N@__1@S@char_traits>#w@F@compare#*1w#S0_#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(length kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:570:24, usr: Some("c:@N@std@N@__1@S@char_traits>#w@F@length#*1w#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:580:24, usr: Some("c:@N@std@N@__1@S@char_traits>#w@F@find#*1w#l#&1w#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(move kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:593:24, usr: Some("c:@N@std@N@__1@S@char_traits>#w@F@move#*w#*1w#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(copy kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:613:24, usr: Some("c:@N@std@N@__1@S@char_traits>#w@F@copy#*w#*1w#l#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__string:624:24, usr: Some("c:@N@std@N@__1@S@char_traits>#w@F@assign#*w#l#w#S"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__throw_length_error kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:578:29, usr: Some("c:@N@std@N@__1@ST>1#Nb@__basic_string_common@F@__throw_length_error#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__throw_out_of_range kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:585:29, usr: Some("c:@N@std@N@__1@ST>1#Nb@__basic_string_common@F@__throw_out_of_range#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invalidate_all_iterators kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:1487:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__invalidate_all_iterators#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invalidate_iterators_past kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:1497:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__invalidate_iterators_past#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1526:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1537:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__init kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:1552:49, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__init#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__init kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:1578:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__init#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1602:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#*1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1613:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#*1t0.0#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1625:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1636:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1647:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1660:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#&1S5_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1677:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#&&>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1695:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#&&>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#&1S5_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__init kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:1716:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__init#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1740:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1750:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1760:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#S6_#&1S5_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1776:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#&1S5_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1805:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1815:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1910:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#>@N@std@ST>1#T@initializer_list1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(basic_string<_CharT, _Traits, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1922:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@basic_string#>@N@std@ST>1#T@initializer_list1t0.0#&1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~basic_string<_CharT, _Traits, _Allocator> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/string:1935:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@~basic_string#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__grow_by_and_replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:1946:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__grow_by_and_replace#^allocator_traits<type-parameter-0-2>:::size_type#S0_#S0_#S0_#S0_#S0_#*1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__grow_by kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:1979:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__grow_by#^allocator_traits<type-parameter-0-2>:::size_type#S0_#S0_#S0_#S0_#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2009:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@assign#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2031:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@assign#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2086:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__move_assign#&>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#$@N@std@N@__1@S@integral_constant>#b#Vb0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2098:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__move_assign#&>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#$@N@std@N@__1@S@integral_constant>#b#Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2169:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@assign#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#S6_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2196:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@assign#*1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(append kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2206:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@append#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(append kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2229:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@append#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2248:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@push_back#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(append kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2332:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@append#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(append kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2339:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@append#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#S6_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(append kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2365:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@append#*1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2375:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@insert#^allocator_traits<type-parameter-0-2>:::size_type#*1t0.0#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2407:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@insert#^allocator_traits<type-parameter-0-2>:::size_type#S0_#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2509:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@insert#^allocator_traits<type-parameter-0-2>:::size_type#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2516:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@insert#^allocator_traits<type-parameter-0-2>:::size_type#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#S0_#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2544:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@insert#^allocator_traits<type-parameter-0-2>:::size_type#*1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2552:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@insert#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2579:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@insert#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2595:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#^allocator_traits<type-parameter-0-2>:::size_type#S0_#*1t0.0#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2650:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#^allocator_traits<type-parameter-0-2>:::size_type#S0_#S0_#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2699:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#^allocator_traits<type-parameter-0-2>:::size_type#S0_#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2706:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#^allocator_traits<type-parameter-0-2>:::size_type#S0_#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#S0_#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2734:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#^allocator_traits<type-parameter-0-2>:::size_type#S0_#*1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2743:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#S0_#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2752:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#S0_#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2760:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#S0_#*1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(replace kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2768:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@replace#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#S0_#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2777:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@erase#^allocator_traits<type-parameter-0-2>:::size_type#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2800:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@erase#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2818:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@erase#>@N@std@N@__1@ST>1#T@__wrap_iter1^allocator_traits<type-parameter-0-2>:::const_pointer#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(pop_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2835:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@pop_back#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(clear kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2857:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@clear#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__erase_to_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2875:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__erase_to_end#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(resize kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2892:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@resize#^allocator_traits<type-parameter-0-2>:::size_type#t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(max_size kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2904:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@max_size#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(reserve kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2916:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@reserve#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:2997:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@at#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3006:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@at#^allocator_traits<type-parameter-0-2>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(front kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3016:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@front#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(front kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3025:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@front#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3034:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@back#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3043:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@back#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(copy kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3051:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@copy#*t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(substr kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3064:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@substr#^allocator_traits<type-parameter-0-2>:::size_type#S0_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3072:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@swap#&>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3108:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3120:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3130:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3140:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3150:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find#t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(rfind kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3161:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@rfind#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(rfind kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3173:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@rfind#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(rfind kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3183:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@rfind#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(rfind kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3193:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@rfind#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(rfind kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3203:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@rfind#t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3214:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3226:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_of#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3236:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_of#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3246:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3257:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_of#t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3267:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3279:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_of#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3289:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_of#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3299:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3310:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_of#t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3320:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_not_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3332:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_not_of#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3342:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_not_of#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3352:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_not_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_first_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3363:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_first_not_of#t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3374:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_not_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#S2_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3386:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_not_of#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3396:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_not_of#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3406:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_not_of#*1t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(find_last_not_of kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3417:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@find_last_not_of#t0.0#^allocator_traits<type-parameter-0-2>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3429:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3447:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3454:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#^allocator_traits<type-parameter-0-2>:::size_type#S0_#*1t0.0#S0_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3478:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#^allocator_traits<type-parameter-0-2>:::size_type#S0_#>@N@std@N@__1@ST>2#T#T@basic_string_view2t0.0t0.1#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3488:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#^allocator_traits<type-parameter-0-2>:::size_type#S0_#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3514:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#^allocator_traits<type-parameter-0-2>:::size_type#S0_#&1>@N@std@N@__1@ST>3#T#T#T@basic_string3t0.0t0.1t0.2#S0_#S0_#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3525:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#*1t0.0#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(compare kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3533:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@compare#^allocator_traits<type-parameter-0-2>:::size_type#S0_#*1t0.0#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invariants kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/string:3546:44, usr: Some("c:@N@std@N@__1@ST>3#T#T#T@basic_string@F@__invariants#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invariants kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:168:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__invariants#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__construct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:198:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__construct_at_end#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__construct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:217:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__construct_at_end#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::size_type#&1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__destruct_at_begin kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:276:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__destruct_at_begin#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::pointer#$@N@std@N@__1@S@integral_constant>#b#Vb0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__destruct_at_begin kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:285:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__destruct_at_begin#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::pointer#$@N@std@N@__1@S@integral_constant>#b#Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__destruct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:293:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__destruct_at_end#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::pointer#$@N@std@N@__1@S@integral_constant>#b#Vb0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__destruct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:302:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__destruct_at_end#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::pointer#$@N@std@N@__1@S@integral_constant>#b#Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__split_buffer<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:308:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__split_buffer#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::size_type#S0_#&^remove_reference<type-parameter-0-1>:::type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__split_buffer<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:318:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__split_buffer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__split_buffer<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:326:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__split_buffer#&^remove_reference<type-parameter-0-1>:::type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__split_buffer<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:333:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__split_buffer#&1^remove_reference<type-parameter-0-1>:::type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~__split_buffer<_Tp, _Allocator> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:339:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@~__split_buffer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__split_buffer<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:349:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__split_buffer#&&>@N@std@N@__1@ST>2#T#T@__split_buffer2t0.0t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__split_buffer<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:363:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@__split_buffer#&&>@N@std@N@__1@ST>2#T#T@__split_buffer2t0.0t0.1#&1^remove_reference<type-parameter-0-1>:::type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:412:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@swap#&>@N@std@N@__1@ST>2#T#T@__split_buffer2t0.0t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(reserve kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:425:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@reserve#^allocator_traits<typename remove_reference<type-parameter-0-1>::type>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(shrink_to_fit kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:441:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@shrink_to_fit#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_front kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:468:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@push_front#&1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_front kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:499:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@push_front#&&t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:532:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@push_back#&1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/__split_buffer:563:34, usr: Some("c:@N@std@N@__1@ST>2#T#T@__split_buffer@F@push_back#&&t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__vector_base_common<> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:294:27, usr: Some("c:@N@std@N@__1@ST>1#Nb@__vector_base_common@F@__vector_base_common#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__throw_length_error kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:301:28, usr: Some("c:@N@std@N@__1@ST>1#Nb@__vector_base_common@F@__throw_length_error#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__throw_out_of_range kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:308:28, usr: Some("c:@N@std@N@__1@ST>1#Nb@__vector_base_common@F@__throw_out_of_range#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__destruct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:409:33, usr: Some("c:@N@std@N@__1@ST>2#T#T@__vector_base@F@__destruct_at_end#^allocator_traits<type-parameter-0-1>:::pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__vector_base<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:419:33, usr: Some("c:@N@std@N@__1@ST>2#T#T@__vector_base@F@__vector_base#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(__vector_base<_Tp, _Allocator> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:429:33, usr: Some("c:@N@std@N@__1@ST>2#T#T@__vector_base@F@__vector_base#&1t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~__vector_base<_Tp, _Allocator> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:437:33, usr: Some("c:@N@std@N@__1@ST>2#T#T@__vector_base@F@~__vector_base#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__swap_out_circular_buffer kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:895:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__swap_out_circular_buffer#&>@N@std@N@__1@ST>2#T#T@__split_buffer2t0.0&t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__swap_out_circular_buffer kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:909:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__swap_out_circular_buffer#&>@N@std@N@__1@ST>2#T#T@__split_buffer2t0.0&t0.1#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(allocate kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:933:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@allocate#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(deallocate kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:944:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@deallocate#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(max_size kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:956:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@max_size#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__recommend kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:966:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__recommend#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__construct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:984:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__construct_at_end#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__construct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1006:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__construct_at_end#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__append kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1040:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__append#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__append kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1059:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__append#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1073:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1087:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#&1t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1102:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1115:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#&1t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1203:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#&1>@N@std@N@__1@ST>2#T#T@vector2t0.0t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1218:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#&1>@N@std@N@__1@ST>2#T#T@vector2t0.0t0.1#&1S4_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1236:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#&&>@N@std@N@__1@ST>2#T#T@vector2t0.0t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1256:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#&&>@N@std@N@__1@ST>2#T#T@vector2t0.0t0.1#&1S4_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1281:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#>@N@std@ST>1#T@initializer_list1t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<_Tp, _Alloc> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:1295:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@vector#>@N@std@ST>1#T@initializer_list1t0.0#&1t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1321:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__move_assign#&>@N@std@N@__1@ST>2#T#T@vector2t0.0t0.1#$@N@std@N@__1@S@integral_constant>#b#Vb0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1335:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__move_assign#&>@N@std@N@__1@ST>2#T#T@vector2t0.0t0.1#$@N@std@N@__1@S@integral_constant>#b#Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1422:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@assign#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__make_iter kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1445:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__make_iter#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__make_iter kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1457:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__make_iter#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_pointer#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(begin kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1469:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@begin#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(begin kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1477:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@begin#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1485:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@end#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1493:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@end#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1518:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@at#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1527:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@at#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(reserve kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1536:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@reserve#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(shrink_to_fit kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1548:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@shrink_to_fit#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1588:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@push_back#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1607:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@push_back#&&t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(pop_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1666:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@pop_back#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1675:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@erase#>@N@std@N@__1@ST>1#T@__wrap_iter1^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1694:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@erase#>@N@std@N@__1@ST>1#T@__wrap_iter1^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_pointer#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_range kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1716:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__move_range#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::pointer#S0_#S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1729:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@insert#>@N@std@N@__1@ST>1#T@__wrap_iter1^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_pointer#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1770:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@insert#>@N@std@N@__1@ST>1#T@__wrap_iter1^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_pointer#&&t0.0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:1848:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@insert#>@N@std@N@__1@ST>1#T@__wrap_iter1^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_pointer#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(resize kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2004:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@resize#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(resize kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2015:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@resize#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::size_type#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::const_reference#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2026:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@swap#&>@N@std@N@__1@ST>2#T#T@vector2t0.0t0.1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invariants kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2050:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__invariants#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invalidate_all_iterators kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2106:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__invalidate_all_iterators#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invalidate_iterators_past kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2117:26, usr: Some("c:@N@std@N@__1@ST>2#T#T@vector@F@__invalidate_iterators_past#^__vector_base<type-parameter-0-0, type-parameter-0-1>:::pointer#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invalidate_all_iterators kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2501:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@__invalidate_all_iterators#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(allocate kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2514:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@allocate#^allocator_traits<type-parameter-0-0>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(deallocate kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2526:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@deallocate#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(max_size kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2539:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@max_size#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__recommend kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2552:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@__recommend#^allocator_traits<type-parameter-0-0>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__construct_at_end kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2570:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@__construct_at_end#^allocator_traits<type-parameter-0-0>:::size_type#b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2593:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2603:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#&1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2616:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#^allocator_traits<type-parameter-0-0>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2630:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#^allocator_traits<type-parameter-0-0>:::size_type#&1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2644:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#^allocator_traits<type-parameter-0-0>:::size_type#&1b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2657:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#^allocator_traits<type-parameter-0-0>:::size_type#&1b#&1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2758:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#$@N@std@S@initializer_list>#b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2772:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#$@N@std@S@initializer_list>#b#&1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 25: Cursor(~vector<bool, type-parameter-0-0> kind: CXXDestructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2788:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@~vector#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2796:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#&1>@N@std@N@__1@ST>2#T#T@vector2bS0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2809:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#&1>@N@std@N@__1@ST>2#T#T@vector2bS0_#&1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2846:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#&&>@N@std@N@__1@ST>2#T#T@vector2bS0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(vector<bool, type-parameter-0-0> kind: CXXConstructor, loc: /usr/local/opt/llvm/include/c++/v1/vector:2862:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@vector#&&>@N@std@N@__1@ST>2#T#T@vector2bS0_#&1S0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2895:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@__move_assign#&>@N@std@N@__1@ST>2#T#T@vector2bS0_#$@N@std@N@__1@S@integral_constant>#b#Vb0#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__move_assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2905:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@__move_assign#&>@N@std@N@__1@ST>2#T#T@vector2bS0_#$@N@std@N@__1@S@integral_constant>#b#Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(assign kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2921:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@assign#^allocator_traits<type-parameter-0-0>:::size_type#&1b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(reserve kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2982:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@reserve#^allocator_traits<type-parameter-0-0>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(shrink_to_fit kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:2996:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@shrink_to_fit#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3016:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@at#^allocator_traits<type-parameter-0-0>:::size_type#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(at kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3025:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@at#^allocator_traits<type-parameter-0-0>:::size_type#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(push_back kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3034:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@push_back#&1b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3044:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@insert#>@N@std@N@__1@ST>3#T#Nb#N^type-parameter-0-0:::__storage_type@__bit_iterator3>@N@std@N@__1@ST>2#T#T@vector2bS0_Vb1#&1b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(insert kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3069:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@insert#>@N@std@N@__1@ST>3#T#Nb#N^type-parameter-0-0:::__storage_type@__bit_iterator3>@N@std@N@__1@ST>2#T#T@vector2bS0_Vb1#^allocator_traits<type-parameter-0-0>:::size_type#&1b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3175:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@erase#>@N@std@N@__1@ST>3#T#Nb#N^type-parameter-0-0:::__storage_type@__bit_iterator3>@N@std@N@__1@ST>2#T#T@vector2bS0_Vb1#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(erase kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3185:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@erase#>@N@std@N@__1@ST>3#T#Nb#N^type-parameter-0-0:::__storage_type@__bit_iterator3>@N@std@N@__1@ST>2#T#T@vector2bS0_Vb1#S1_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(swap kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3196:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@swap#&>@N@std@N@__1@ST>2#T#T@vector2bS0_#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(resize kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3213:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@resize#^allocator_traits<type-parameter-0-0>:::size_type#b#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(flip kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3242:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@flip#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__invariants kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3261:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@__invariants#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 21: Cursor(__hash_code kind: CXXMethod, loc: /usr/local/opt/llvm/include/c++/v1/vector:3280:27, usr: Some("c:@N@std@N@__1@SP>1#T@vector>#b#t0.0@F@__hash_code#1"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::item] Unhandled cursor kind 24: Cursor(WorkGroupSize kind: CXXConstructor, loc: ../../gfx/angle/checkout/include/GLSLANG/ShaderVars.h:330:33, usr: Some("c:@N@sh@S@WorkGroupSize@F@WorkGroupSize#I#"))
[2019-05-30T00:55:09Z ERROR bindgen::ir::context] unused option: --whitelist-type SH.*
@jdm
Copy link
Member

jdm commented May 30, 2019

Updating the bindings made macOS and Windows tests pass. Just need to figure out how to work around the build problem on linux now.

@jdm
Copy link
Member

jdm commented May 30, 2019

The --features egl build failed on Windows:

gfx/angle/checkout/src/libEGL/libEGL.cpp(36): error C2065: 'libGLESv2': undeclared identifier
@jdm jdm force-pushed the kvark:update branch from febab2b to 433b367 May 30, 2019
@jdm
Copy link
Member

jdm commented May 30, 2019

Everything passed! The secret was upgrading CI to xenial and therefore a newer clang.

@jdm
Copy link
Member

jdm commented May 30, 2019

r? @kvark

@kvark
Copy link
Member Author

kvark commented May 30, 2019

Amazing work, thanks @jdm !
@bors-servo r+

@bors-servo
Copy link
Contributor

bors-servo commented May 30, 2019

📌 Commit 433b367 has been approved by kvark

@bors-servo
Copy link
Contributor

bors-servo commented May 30, 2019

Testing commit 433b367 with merge 88d2c0d...

bors-servo added a commit that referenced this pull request May 30, 2019
Update to m-c f1082516d62f3b8ff6ed1ec44c1e2328bd2a3977
@bors-servo
Copy link
Contributor

bors-servo commented May 30, 2019

☀️ Test successful - checks-travis, status-appveyor
Approved by: kvark
Pushing 88d2c0d to master...

@bors-servo bors-servo merged commit 433b367 into servo:master May 30, 2019
3 checks passed
3 checks passed
Travis CI - Pull Request Build Passed
Details
continuous-integration/appveyor/pr AppVeyor build succeeded
Details
homu Test successful
Details
@kvark kvark deleted the kvark:update branch May 30, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked issues

Successfully merging this pull request may close these issues.

None yet

3 participants
You can’t perform that action at this time.