Change-Id: I6c48683b620b0f119d7f0ae4a88502773202756b
Reviewed-on: https://go-review.googlesource.com/28170
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
type FmtFlag int
const (
- FmtWidth FmtFlag = 1 << iota
- FmtLeft // "-"
- FmtSharp // "#"
- FmtSign // "+"
- FmtUnsigned // "u"
- FmtShort // "h"
- FmtLong // "l"
- FmtComma // ","
- FmtByte // "hh"
+ FmtLeft FmtFlag = 1 << iota // "-"
+ FmtSharp // "#"
+ FmtSign // "+"
+ FmtUnsigned // "u"
+ FmtShort // "h"
+ FmtLong // "l"
+ FmtComma // ","
+ FmtByte // "hh"
)
//
const (
FErr = iota
FDbg
- _ // formerly FExp - leave gap for now just in case there's some hard-wired dependency on the const value
FTypeId
)