The following code gives me a compile time error:
#include <chrono>
int main() {
auto day = 24h;
return 0;
}
Error C3688: invalid literal suffix 'h'; literal operator or literal operator template 'operator ""h' not found.
I'm trying this on Visual Studio 2015 Update 1, which according to this should work, so what's going on?