Quick Q: Is 'auto const' and 'const auto' the same?
Quick A: yes
Recently on SO:
Is 'auto const' and 'const auto' the same?
The const qualifier applies to the type to the immediate left unless there is nothing to the left then it applies to the type to the immediate right. So yup it's the same.