Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion clang/lib/AST/ByteCode/Pointer.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ enum class Storage { Block, Int, Fn, Typeid };
/// data the pointer decribes can be found at
/// Pointee->rawData() + Pointer.Offset.
///
///
/// \verbatim
/// Pointee Offset
/// │ │
/// │ │
Expand All @@ -87,6 +87,7 @@ enum class Storage { Block, Int, Fn, Typeid };
/// │
/// │
/// Base
/// \endverbatim
class Pointer {
private:
static constexpr unsigned PastEndMark = ~0u;
Expand Down
Loading