Skip to content

Commit 188e827

Browse files
authored
Add missing type_traits include to benchmark_register.h (#2076)
The file uses std::is_signed, which is in <type_traits>. Without this, this file won't build after https://llvm.org/PR168334
1 parent 9458f54 commit 188e827

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/benchmark_register.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
#include <algorithm>
55
#include <limits>
6+
#include <type_traits>
67
#include <vector>
78

89
#include "check.h"

0 commit comments

Comments
 (0)