Skip to content

Commit c735e05

Browse files
committed
[Support] System include SipHash.h
Match the SYSTEM directive to this header which was introduced by 7f3afab, because a regular include may skip system directories.
1 parent 6c63316 commit c735e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Support/SipHash.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
//===----------------------------------------------------------------------===//
1313

1414
#include "llvm/Support/SipHash.h"
15-
#include "siphash/SipHash.h"
1615
#include "llvm/ADT/ArrayRef.h"
1716
#include "llvm/ADT/StringExtras.h"
1817
#include "llvm/ADT/StringRef.h"
1918
#include "llvm/Support/Debug.h"
2019
#include "llvm/Support/Endian.h"
2120
#include <cstdint>
21+
#include <siphash/SipHash.h>
2222

2323
using namespace llvm;
2424
using namespace support;

0 commit comments

Comments
 (0)