DinoZ1729/Ray

Consider adding functions.cpp

yuchdev opened this issue · 0 comments

Your "function.h" is impossible to include more than in one place, it will cause "multiple definition" error (I know you include it once, but what if someone else wants to reuse it). This happens because it contains declaration and implementation of functions. If you move implementations to pair functions.cpp file, you would solve this problem.