I have a function interface:
struct iFace {
virtual Type& getType() = 0;
}
and the idea is to retrieve it like:
iFace& iface = getIface();
Type& type = iface.getType();
however, i occassionally i do a mistake and write:
Type type = iface.getType();
which copies by value, which is what i want to avoid. However when i make such mistakes, the compiler doesn't issue a warning because its legal syntax. I would like to trigger a compile-time error for this, Question what are my alternatives?
i thought about declaring a copy constructor but not defining it anywhere, causing a link-time error if it's used, but then i won't be able to use copy constructor in ANY situation, which is less than desiderable