author | francesco-ST <francesco.abbate@st.com> | 2010年10月25日 17:46:15 +0200 |
---|---|---|
committer | francesco-ST <francesco.abbate@st.com> | 2010年10月25日 17:46:15 +0200 |
commit | cdf39a4cd002141044d1546dd440ee4d71da5158 (patch) | |
tree | 12b0e648f42b31d46467c2f7992650a3f636fef7 /matrix_decls_source.c | |
parent | 53b62a19f80914481b3c4ddd29a34e58fb43b543 (diff) | |
download | gsl-shell-cdf39a4cd002141044d1546dd440ee4d71da5158.tar.gz |
-rw-r--r-- | matrix_decls_source.c | 4 |
diff --git a/matrix_decls_source.c b/matrix_decls_source.c index 6afe0a48..cc786919 100644 --- a/matrix_decls_source.c +++ b/matrix_decls_source.c @@ -24,8 +24,6 @@ static int FUNCTION (matrix, get) (lua_State *L); static int FUNCTION (matrix, set) (lua_State *L); static int FUNCTION (matrix, free) (lua_State *L); static int FUNCTION (matrix, new) (lua_State *L); -static int FUNCTION (matrix, dims) (lua_State *L); -static int FUNCTION (matrix, copy) (lua_State *L); static int FUNCTION (matrix, slice) (lua_State *L); static void FUNCTION (matrix, set_ref) (lua_State *L, int index); @@ -37,8 +35,6 @@ static const struct luaL_Reg FUNCTION (matrix, methods)[] = { {"__div", matrix_div_elements}, {"__unm", matrix_unm}, {"__gc", FUNCTION (matrix, free)}, - {"dims", FUNCTION (matrix, dims)}, - {"copy", FUNCTION (matrix, copy)}, {"get", FUNCTION (matrix, get)}, {"set", FUNCTION (matrix, set)}, {"slice", FUNCTION (matrix, slice)}, |