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 19bad2a commit 40d4f30Copy full SHA for 40d4f30
llvm/include/llvm/Support/LineIterator.h
@@ -10,6 +10,7 @@
10
#define LLVM_SUPPORT_LINEITERATOR_H
11
12
#include "llvm/ADT/StringRef.h"
13
+#include "llvm/Support/Compiler.h"
14
#include "llvm/Support/DataTypes.h"
15
#include "llvm/Support/MemoryBufferRef.h"
16
#include <iterator>
@@ -30,7 +31,7 @@ class MemoryBuffer;
30
31
/// character.
32
///
33
/// Note that this iterator requires the buffer to be nul terminated.
-class line_iterator {
34
+class LLVM_ABI line_iterator {
35
std::optional<MemoryBufferRef> Buffer;
36
char CommentMarker = '\0';
37
bool SkipBlanks = true;
0 commit comments