diff options
author | Helmut Grohne <grohne@cs.uni-bonn.de> | 2014-11-26 15:32:21 +0100 |
---|---|---|
committer | Helmut Grohne <grohne@cs.uni-bonn.de> | 2014-11-26 15:32:21 +0100 |
commit | 69f47cad0ac14a7549e1e94b9f9a40f9935ad99e (patch) | |
tree | 33f404a8c720b979f58943ea96cf1498149b3f0b /CheckInsert.agda | |
parent | a736eed95090ec104edbfbc9ea08bc265c618678 (diff) | |
download | bidiragda-69f47cad0ac14a7549e1e94b9f9a40f9935ad99e.tar.gz |
fix compilation against agda stdlib 0.9
Diffstat (limited to 'CheckInsert.agda')
-rw-r--r-- | CheckInsert.agda | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CheckInsert.agda b/CheckInsert.agda index 86d7144..e0e35ec 100644 --- a/CheckInsert.agda +++ b/CheckInsert.agda @@ -5,7 +5,7 @@ module CheckInsert (A : DecSetoid ℓ₀ ℓ₀) where open import Data.Nat using (ℕ) open import Data.Fin using (Fin) -open import Data.Fin.Props using (_≟_) +open import Data.Fin.Properties using (_≟_) open import Data.Maybe using (Maybe ; nothing ; just) renaming (setoid to MaybeSetoid ; Eq to MaybeEq) open import Data.Vec using (Vec) renaming (_∷_ to _∷V_) open import Data.Vec.Equality using () renaming (module Equality to VecEq) |