We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fe0968 commit 2d46832Copy full SHA for 2d46832
llvm/include/llvm/Support/BinaryStreamError.h
@@ -10,6 +10,7 @@
10
#define LLVM_SUPPORT_BINARYSTREAMERROR_H
11
12
#include "llvm/ADT/StringRef.h"
13
+#include "llvm/Support/Compiler.h"
14
#include "llvm/Support/Error.h"
15
16
#include <string>
@@ -24,7 +25,7 @@ enum class stream_error_code {
24
25
};
26
27
/// Base class for errors originating when parsing raw PDB files
-class BinaryStreamError : public ErrorInfo<BinaryStreamError> {
28
+class LLVM_ABI BinaryStreamError : public ErrorInfo<BinaryStreamError> {
29
public:
30
static char ID;
31
explicit BinaryStreamError(stream_error_code C);
0 commit comments