Procházet zdrojové kódy

Fix 541 (struct fields are allocated sequentially)

Claudiu RAVEICA před 10 roky
rodič
revize
4ff3d2fe76
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      control.go

+ 2 - 1
control.go

@@ -8,10 +8,11 @@ import (
 )
 
 type controlConn struct {
+	connecting uint64
+
 	session *Session
 
 	conn       atomic.Value
-	connecting uint64
 
 	retry RetryPolicy