Skip to content

Commit 2733ea6

Browse files
committed
Fix benchmark constant
1 parent 0c232f4 commit 2733ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/ext/bench_pushpull.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
template<typename T>
1111
struct sample_value {};
1212
template<> struct sample_value<char> { static constexpr char val = 122; };
13-
template<> struct sample_value<int64_t> { static constexpr int64_t val = 1l<<62; };
13+
template<> struct sample_value<int64_t> { static constexpr int64_t val = 1LL<<62; };
1414
template<> struct sample_value<double> { static constexpr double val = 17324412.552; };
1515
template<> struct sample_value<std::string> { static const std::string val; };
1616
const std::string sample_value<std::string>::val(200, 'a');

0 commit comments

Comments
 (0)