[interp] Fix recent warnings I added. (mono/mono#16722)
authorJay Krell <jaykrell@microsoft.com>
Sat, 7 Sep 2019 19:30:48 +0000 (12:30 -0700)
committerRyan Lucia <rylucia@microsoft.com>
Sat, 7 Sep 2019 19:30:47 +0000 (15:30 -0400)
Commit migrated from https://github.com/mono/mono/commit/5ba104cf39cf3ed0a6b507af7aeaf324e2a06239

src/mono/mono/mini/interp/mintops.c

index 1fd372e..f7528bc 100644 (file)
@@ -17,13 +17,13 @@ struct MonoInterpOpnameCharacters {
 };
 #undef OPDEF
 
-extern const MonoInterpOpnameCharacters mono_interp_opname_characters = {
+const MonoInterpOpnameCharacters mono_interp_opname_characters = {
 #define OPDEF(a,b,c,d,e,f) b,
 #include "mintops.def"
 };
 #undef OPDEF
 
-extern const guint16 mono_interp_opname_offsets [] = {
+const guint16 mono_interp_opname_offsets [] = {
 #define OPDEF(a,b,c,d,e,f) offsetof (MonoInterpOpnameCharacters, a),
 #include "mintops.def"
 #undef OPDEF