I understand that X & const x
is redundant. It is not ok! But I want to know what is the difference between X const &x
and X & const x
?
Is the first expression saying that x is a reference to a constant class X
?
I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...