vanderlokken / rust-vst-gui

An extension to the 'rust-vst' crate to create VST plugin GUIs
MIT License
41 stars 14 forks source link

Remove some glob imports to fix ambiguity #4

Closed andersforsgren closed 5 years ago

andersforsgren commented 5 years ago

I'm not sure if this is the best way to resolve this ambiguity but at least it compiles this way.

This was the error

   Compiling vst-gui v0.1.0 (https://github.com/vanderlokken/rust-vst-gui#246cbd01)
error[E0659]: `IDataObject` is ambiguous (glob import vs glob import in the same module)

    |
595 |     _pDO: *mut IDataObject,
    |                ^^^^^^^^^^^ ambiguous name
vanderlokken commented 5 years ago

Thank you for fixing this.