So before I started interning with the fine folks of DigiPen R&D in the Summer of 2015, I was using one of their projects, Zilch, as a scripting language in my game Ripple. As a side project I looked into making an Atom plug-in for Zilch.
I didn’t get particularly far, but I got far enough to realize that the code internal to Zilch that finds member functions was broken.
Here’s a snippet from the Zilch source code that was causing my problem.
Heavily truncated, but essentially this function looks for a function on a BoundType, typically some Zilch class you’ve compiled, based on name, an array of parameter types, and return type. The problem lies in the fact that at the time, this code never actually looked for returnType. But we never got an unused parameter warning because the returnType was being used, in the recursive call into this function!
Wow, okay, well that’s an interesting problem to run into. Took me an hour or two to find, and the guy who eventually became my boss and I had a good laugh. His tests were actually relying on this bug, so that required some fixing on his part.
But then I gave this some more thought, and I wondered why this wasn’t tracked by MSVC. So I went and tested it on the pre-release VC 2015 compiler. Turned out it still didn’t work. So I messaged STL on reddit, and he suggested I file a Connect bug. So I did.
But then I decided to make a test case for any given compiler and see if any of the compilers I would typically consider using solved this, and it turns out they don’t.
Here’s the test code:
And the flags I used to compile on g++ (5.2.0), clang (3.7) and Borland (Embarcadero) (6.50):
None of them reported it.
So if you’re interested in getting this fixed for the compilers you might use, let people know, and contact them through these bug reports:
Bug Reports: