[Alignment][NFC] Convert StoreInst to MaybeAlign
[llvm-complete.git] / include / llvm / DebugInfo / PDB / Native / ISectionContribVisitor.h
blob717dce2f27379bbb7d75a1ff4778c632ef3c22d0
1 //===- ISectionContribVisitor.h ---------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H
10 #define LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H
12 namespace llvm {
13 namespace pdb {
15 struct SectionContrib;
16 struct SectionContrib2;
18 class ISectionContribVisitor {
19 public:
20 virtual ~ISectionContribVisitor() = default;
22 virtual void visit(const SectionContrib &C) = 0;
23 virtual void visit(const SectionContrib2 &C) = 0;
26 } // end namespace pdb
27 } // end namespace llvm
29 #endif // LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H