Wpis z mikrobloga

@PsichiX: spojrzałem na któryś z odcinków:



for
```**```
(BulletsList::iterator it = m_bullets.begin(); it != m_bullets.end(); it++)

{

blah = it->from;

}

```->**```
for
```**```
(
```**```
auto
```**```
& bullet : m_bullets)

{

blah = bullet.from;

}