<div dir="ltr"><div><div><div><div><div><div><div>Hi Samuel,<br><br></div>The parameters to pass to not_implemented are basically free, it's anything you want to see appear in the compile error message it triggers. Concretely algorithms, pass the tags of the geometries they are called with.<br> <br></div>I had thought about your issue. I hadn't had the time to give it much thought yet but the first thing I'd try would be to return an instance of some not_implemented_result which would be implicitly convertible to anything.<br> <br></div><div>struct not_implemented_result<br>{<br></div><div>��� template <class T><br></div><div>��� operator T()<br>��� {<br></div><div>������� // This will never actually happen - we just need to write something<br> </div><div>������� // that hopefully all compilers are happy with (ideally without warnings)<br></div><div>������� // and doesn't assume anything about T<br></div><div>������� T* t;<br></div><div>������� return *T;<br> ��� }<br></div><div>};<br></div><div><br></div>template <...><br></div>struct not_implemented: ...<br>{<br></div><div>��� template <class Arg1><br></div>��� static not_implemented_result apply(Arg1)<br></div>��� { throw .... }<br> <br></div>��� // overloads with more arguments - as we don't have c++11 variadics available<br><div><div><div>};<br><br></div><div>The implicit conversion ensures the compiler will always accept to compile the call, thus giving a chance for the exception to occur at runtime. I'm not saying it will work, but that would be my first attempt...<br> <br></div><div>Regards<br></div><div>Bruno<br></div></div></div></div>