Skip to content

Commit 2d46832

Browse files
committed
DLLExport BinaryStreamError
1 parent 0fe0968 commit 2d46832

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/include/llvm/Support/BinaryStreamError.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_SUPPORT_BINARYSTREAMERROR_H
1111

1212
#include "llvm/ADT/StringRef.h"
13+
#include "llvm/Support/Compiler.h"
1314
#include "llvm/Support/Error.h"
1415

1516
#include <string>
@@ -24,7 +25,7 @@ enum class stream_error_code {
2425
};
2526

2627
/// Base class for errors originating when parsing raw PDB files
27-
class BinaryStreamError : public ErrorInfo<BinaryStreamError> {
28+
class LLVM_ABI BinaryStreamError : public ErrorInfo<BinaryStreamError> {
2829
public:
2930
static char ID;
3031
explicit BinaryStreamError(stream_error_code C);

0 commit comments

Comments
 (0)