Skip to content

Commit b925f7a

Browse files
committed
DLLExport format_object_base
1 parent 19bad2a commit b925f7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/include/llvm/Support/Format.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "llvm/ADT/ArrayRef.h"
2626
#include "llvm/ADT/STLExtras.h"
2727
#include "llvm/ADT/StringRef.h"
28+
#include "llvm/Support/Compiler.h"
2829
#include "llvm/Support/DataTypes.h"
2930
#include <cassert>
3031
#include <cstdio>
@@ -36,7 +37,7 @@ namespace llvm {
3637

3738
/// This is a helper class used for handling formatted output. It is the
3839
/// abstract base class of a templated derived class.
39-
class format_object_base {
40+
class LLVM_ABI format_object_base {
4041
protected:
4142
const char *Fmt;
4243
~format_object_base() = default; // Disallow polymorphic deletion.

0 commit comments

Comments
 (0)