136 proc bzero[T](uninit: var seq[T]) =
    137   let n = len(uninit) * sizeof(T)
    138   let bz: ptr byte = cast[ptr byte](addr (uninit[0]))
    139   system.zeroMem(bz, n)
    
    
    
    DW_banded.nim(138, 42) Warning: a [b] will be parsed as command syntax; 
spacing is deprecated [Deprecated]
    

I don't see any spaces. What am I doing wrong?

Reply via email to