So I\'m making a program in c++ to handle vectors, and it\'s mostly there, but I just wanted to test it, so I have this:
class vector3 { protected:
vector3 vec1();
You're declaring a function here, and displaying a function pointer. Use:
vector3 vec1;