]> granicus.if.org Git - llvm/commitdiff
Fix modules build for r374337
authorPavel Labath <pavel@labath.sk>
Fri, 11 Oct 2019 07:16:19 +0000 (07:16 +0000)
committerPavel Labath <pavel@labath.sk>
Fri, 11 Oct 2019 07:16:19 +0000 (07:16 +0000)
A modules build failed with the following error:
  call to function 'operator&' that is neither visible in the template definition nor found by argument-dependent lookup

Fix that by declaring the appropriate operators in the llvm::minidump
namespace.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374517 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/BinaryFormat/Minidump.h

index 0ecd341da8c4efc6ee9ad4ed373bee5ef84e009b..4ab5332e7341e02cd9716dd9291e9b05b89f114d 100644 (file)
@@ -25,6 +25,8 @@
 namespace llvm {
 namespace minidump {
 
+LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE();
+
 /// The minidump header is the first part of a minidump file. It identifies the
 /// file as a minidump file, and gives the location of the stream directory.
 struct Header {