[Remarks][NFC] Forward declare ParsedStringTable

llvm-svn: 371870
This commit is contained in:
Francis Visoiu Mistrih 2019-09-13 17:27:28 +00:00
parent 4ecd14c20f
commit 5f57f8daa8
2 changed files with 4 additions and 1 deletions

View File

@ -18,7 +18,7 @@
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Remarks/RemarkParser.h"
#include "llvm/Remarks/Remark.h"
#include <vector>
namespace llvm {
@ -27,6 +27,8 @@ class raw_ostream;
namespace remarks {
struct ParsedStringTable;
/// The string table used for serializing remarks.
/// This table can be for example serialized in a section to be consumed after
/// the compilation.

View File

@ -7,6 +7,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Remarks/Remark.h"
#include "llvm/Remarks/RemarkParser.h"
#include "llvm/Remarks/YAMLRemarkSerializer.h"
#include "llvm/Support/Error.h"
#include "gtest/gtest.h"