Commit 1319a0ff authored by Robert Griesemer's avatar Robert Griesemer

cmd/compile: remove unused FmtWidth flag

Change-Id: I6c48683b620b0f119d7f0ae4a88502773202756b
Reviewed-on: https://go-review.googlesource.com/28170Reviewed-by: 's avatarMatthew Dempsky <mdempsky@google.com>
parent 6a982c39
......@@ -18,15 +18,14 @@ import (
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"
)
//
......@@ -71,7 +70,6 @@ const (
const (
FErr = iota
FDbg
_ // formerly FExp - leave gap for now just in case there's some hard-wired dependency on the const value
FTypeId
)
......
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 to comment