mirror of https://github.com/mosra/magnum.git
Browse Source
On this day, MSVC linker started complaining about missing symbols like WavImporter::doOpenData() in the WavHeaderTest. Mind you, there's NOTHING the WavHeader.h would use from there. Neither the test. The only thing that connects those two together is that WavHeader.h includes WavImporter.h (probably just a leftover from the time where those two actually depended on each other). My suspicion is that this got triggered due to recent changes in AbstractPlugin (it's movable now) and MSVC attempts to instantiate the destructor or whatnot, needing references to the privately defined virtual functions. Or something. All that while nothing from there is EVER used. Removing the header dependency, hopefully this fixes it. Ugh.pull/326/merge
2 changed files with 1 additions and 3 deletions
Loading…
Reference in new issue