aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-25 10:38:47 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-25 10:38:47 -0200
commite47baca75a3854c9f3065c554d6758bd23c5d73f (patch)
treea6b5edaa570a008e2880a53455654df069088540 /ltable.c
parentb8a680c11452b9e305b66400952f3bf702bf2dd5 (diff)
downloadlua-e47baca75a3854c9f3065c554d6758bd23c5d73f.tar.gz
lua-e47baca75a3854c9f3065c554d6758bd23c5d73f.tar.bz2
lua-e47baca75a3854c9f3065c554d6758bd23c5d73f.zip
warnings from Visual C++
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ltable.c b/ltable.c
index 1250877a..d2811feb 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 1.122 2002/11/14 11:51:50 roberto Exp roberto $ 2** $Id: ltable.c,v 1.123 2002/11/14 16:15:53 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -86,8 +86,6 @@ Node *luaH_mainposition (const Table *t, const TObject *key) {
86 default: 86 default:
87 return hashpointer(t, gcvalue(key)); 87 return hashpointer(t, gcvalue(key));
88 } 88 }
89 lua_assert(0);
90 return 0; /* to avoid warnings */
91} 89}
92 90
93 91