S
SinusX
Hello
My gcc copiler write this
TypEle& Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]
' and `
TypEle Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]'
cannot be overloaded
where TypEle is tempalte type, Tablica is table object.
TypEle Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]
I use for Tablica<int> tab1; int X;
X = tab1[23] and this work great but when I added
TypEle& Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]
for tab[1] = X it doen't work. With second operator i can't compile. How
should i corect this ??
My gcc copiler write this
TypEle& Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]
' and `
TypEle Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]'
cannot be overloaded
where TypEle is tempalte type, Tablica is table object.
TypEle Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]
I use for Tablica<int> tab1; int X;
X = tab1[23] and this work great but when I added
TypEle& Tablica<TypEle>:perator[](unsigned int) [with TypEle = int]
for tab[1] = X it doen't work. With second operator i can't compile. How
should i corect this ??