chore: protect Std.BitVec (#3884)
This makes `Std.BitVec` a protected abbreviation so `open Std` doesn't result in ambiguity errors.
This commit is contained in:
parent
cd02ad76f1
commit
2e3d523332
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ structure BitVec (w : Nat) where
|
|||
O(1), because we use `Fin` as the internal representation of a bitvector. -/
|
||||
toFin : Fin (2^w)
|
||||
|
||||
@[deprecated] abbrev Std.BitVec := _root_.BitVec
|
||||
@[deprecated] protected abbrev Std.BitVec := _root_.BitVec
|
||||
|
||||
-- We manually derive the `DecidableEq` instances for `BitVec` because
|
||||
-- we want to have builtin support for bit-vector literals, and we
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue