[cxx][netcore] Fix C++ build (mono/mono#15786)
authorAleksey Kliger (λgeek) <alklig@microsoft.com>
Tue, 23 Jul 2019 09:42:51 +0000 (05:42 -0400)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Tue, 23 Jul 2019 09:42:51 +0000 (11:42 +0200)
assembly.c `exact_sn_match` uses bitwise-or on MonoAssemblyNameEqFlags

Commit migrated from https://github.com/mono/mono/commit/148891b51519371638cb1cffea39d330cbd90e11

src/mono/mono/metadata/assembly-internals.h

index 17781e9..77659a1 100644 (file)
@@ -31,6 +31,8 @@ typedef enum {
        MONO_ANAME_EQ_MASK = 0x7
 } MonoAssemblyNameEqFlags;
 
+G_ENUM_FUNCTIONS (MonoAssemblyNameEqFlags);
+
 void
 mono_assembly_name_free_internal (MonoAssemblyName *aname);