Skip to content

Commit db4beb6

Browse files
kuhargithub-actions[bot]
authored andcommitted
Automerge: [ADT] Drop unused include in StringSwitch. NFC.
2 parents 860ae77 + 7c9f137 commit db4beb6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/include/llvm/ADT/StringSwitch.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#define LLVM_ADT_STRINGSWITCH_H
1515

1616
#include "llvm/ADT/StringRef.h"
17-
#include "llvm/Support/Compiler.h"
1817
#include "llvm/Support/ErrorHandling.h"
1918
#include <cassert>
2019
#include <cstring>
@@ -64,7 +63,7 @@ class StringSwitch {
6463
void operator=(const StringSwitch &) = delete;
6564
void operator=(StringSwitch &&) = delete;
6665

67-
// Case-sensitive case matchers
66+
// Case-sensitive case matchers.
6867
StringSwitch &Case(StringLiteral S, T Value) {
6968
CaseImpl(S, Value);
7069
return *this;

0 commit comments

Comments
 (0)