I am unsure whether this is a compiler bug, or whether I have done something that goes against the standard to cause undefined behaviour. Here is my code:
#include <iostream>
template<auto InputSize, typename SizeType = decltype(InputSize)>
class StaticArray
{
public:
using size_type = SizeType;
using size_type2 = decltype(InputSize);
};
int main()
{
//StaticArray<2, int> s1;
StaticArray<2ull, int> s3;
std::cout << typeid(decltype(s3)::size_type).name() << "\t" << typeid(decltype(s3)::size_type2).name() << "\n";
return 0;
}
If the commented out line stays commented out, I get the correct output: int unsigned __int64
. However, if I uncomment the line, I get the output int int
. For reference I am compiling this in x86 debug, on MSVC 2017 v15.9.2.
It looks like a compiler bug, please see https://godbolt.org/z/k2ng-1 . If the version of MSVC is less or equal of 19.16 it has the problem you showed, from 19.20 everything works fine.
Edit: below the test code should the link break in the future:
#include <type_traits>
template<auto InputSize, typename SizeType = decltype(InputSize)>
class StaticArray
{
public:
using size_type = SizeType;
using size_type2 = decltype(InputSize);
};
int main()
{
StaticArray<2, int> s1;
StaticArray<2ull, int> s3;
static_assert(std::is_same_v<decltype(s3)::size_type, int>, "ERROR 1");
static_assert(std::is_same_v<decltype(s3)::size_type2, unsigned long long>, "ERROR 2");
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With