Skip to content

Commit aedea00

Browse files
committed
Signposts.h - move unnecessary StringRef include down to Signposts.cpp
1 parent 660ff65 commit aedea00

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

llvm/include/llvm/Support/Signposts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
#ifndef LLVM_SUPPORT_SIGNPOSTS_H
1717
#define LLVM_SUPPORT_SIGNPOSTS_H
1818

19-
#include "llvm/ADT/StringRef.h"
2019
#include <memory>
2120

2221
namespace llvm {
2322
class SignpostEmitterImpl;
23+
class StringRef;
2424

2525
/// Manages the emission of signposts into the recording method supported by
2626
/// the OS.

llvm/lib/Support/Signposts.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "llvm/Support/Signposts.h"
10-
10+
#include "llvm/ADT/StringRef.h"
1111
#include "llvm/Config/config.h"
12+
1213
#if LLVM_SUPPORT_XCODE_SIGNPOSTS
1314
#include "llvm/ADT/DenseMap.h"
1415
#include "llvm/Support/Mutex.h"

0 commit comments

Comments
 (0)