From 1464c8035f21cc110c10d2b341b4e203bf73321e Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 8 Apr 2014 12:04:04 +0100 Subject: [PATCH] Removed Unused const. --- unqlite.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/unqlite.go b/unqlite.go index 22198df..9cdbcac 100644 --- a/unqlite.go +++ b/unqlite.go @@ -26,11 +26,6 @@ func (e UnQLiteError) Error() string { return s } -const ( - // UnQLiteNoMemErr ... - UnQLiteNoMemErr UnQLiteError = UnQLiteError(C.UNQLITE_NOMEM) -) - var errString = map[UnQLiteError]string{ C.UNQLITE_LOCKERR: "Locking protocol error", C.UNQLITE_READ_ONLY: "Read only Key/Value storage engine",