diff options
| author | Brian Campbell | 2017-06-19 11:41:00 +0100 |
|---|---|---|
| committer | Brian Campbell | 2017-06-19 11:41:00 +0100 |
| commit | 027d91f0cf98c97fa0f519cb5f90883a81655ae5 (patch) | |
| tree | f712f911f70a24690f92d1cfb76af3b123d07cab /src | |
| parent | 606fdd6a90f551a54033f9a69ef1cd28b3b6455e (diff) | |
Fix Show on Lem bitvector
Diffstat (limited to 'src')
| -rw-r--r-- | src/gen_lib/sail_values.lem | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gen_lib/sail_values.lem b/src/gen_lib/sail_values.lem index ecfd3ce7..74642ce1 100644 --- a/src/gen_lib/sail_values.lem +++ b/src/gen_lib/sail_values.lem @@ -214,7 +214,7 @@ let bvget_start (Bitvector _ s _) = s let bvget_elems (Bitvector elems _ _) = elems let bvlength (Bitvector bs _ _) = integerFromNat (word_length bs) -instance forall 'a. Show 'a => (Show (bitvector 'a)) +instance forall 'a. (Show (bitvector 'a)) let show = showBitvector end |
