Quick Q: Is 'auto' type deduction static (compile time) or dynamic (run time)?
Recently on StackOverflow:
C++ 11 auto compile time or runtime?
auto a = 10;When compiler knows
a
isint
, at compile time or at run-time? If it deduce type at run-time, will it not affect performance?