15 Jan
2015
15 Jan
'15
10:47 p.m.
On Thu, Jan 15, 2015 at 5:27 PM, Peter Dimov
..\..\..\include/boost/timer/timer.hpp:44:43: warning: 'long long' is a C++11 extension [-Wc++11-long-long] void clear() { wall = user = system = 0LL; } ^
The fix in this case appears trivial, just remove the LL.
IIRC, the LL is there to quiet some other compiler, probably msvc. But thanks, I'll (1) fix it one way or another, and (2) add clang++ without C++11 to my test configs. --Beman