Commit c68a49e6 by Szeberényi Imre

const_iterator hiba javítás + typo

parent 821e3d2f
......@@ -137,12 +137,12 @@ public:
}
/// indirekció
T& operator*() {
T& operator*() const {
if (idx != p->siz) return p->t[idx];
else throw std::runtime_error("Hibas indirekcio");
}
/// Szelekció pointerrel (nyil). Címet kell, hogy adjon.
/// Szelekció pointerrel (nyíl). Címet kell, hogy adjon.
T* operator->() {
return &operator*();
}
......
......@@ -83,7 +83,7 @@ int main() {
/// intarr0-ból létrehozzuk az intarr1-et
Array<int, 100> intarr1(intarr0.begin(), intarr0.end());
/// Kiírjuk az elemeket.
PrintArray("\bintarr1", intarr1);
PrintArray("\nintarr1", intarr1);
#endif // ELKESZULT >= 14
#if ELKESZULT >= 15
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment