Skip to content

Commit 34a5867

Browse files
committed
squash
1 parent af110c2 commit 34a5867

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

booster/library/Booster/Builtin.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
{-# LANGUAGE MultiWayIf #-}
2-
31
{- |
42
Copyright : (c) Runtime Verification, 2023
53
License : BSD-3-Clause

kore/src/Kore/Builtin/Map.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ builtinFunctions key
490490
| key == Map.elementKey = Just $ Builtin.functionEvaluator evalElement
491491
| key == Map.unitKey = Just $ Builtin.functionEvaluator evalUnit
492492
| key == Map.updateKey = Just $ Builtin.functionEvaluator evalUpdate
493-
| key == Map.updateAllKey = Just $ Builtin.notImplemented
493+
| key == Map.updateAllKey = Just Builtin.notImplemented
494494
| key == Map.in_keysKey = Just $ Builtin.functionEvaluator evalInKeys
495495
| key == Map.keysKey = Just $ Builtin.functionEvaluator evalKeys
496496
| key == Map.keys_listKey = Just $ Builtin.functionEvaluator evalKeysList

0 commit comments

Comments
 (0)