Fixed a build break on Windows

This commit is contained in:
Amit Agarwal 2015-07-27 16:53:40 -07:00
Родитель 930c7ef183
Коммит 779c6d8969
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1720,7 +1720,8 @@ protected:
}
}
static string GeneratePaddedFloatOrExpFormat(int padSize, int precision, ElemType value)
template <typename ValueType>
static string GeneratePaddedFloatOrExpFormat(int padSize, int precision, ValueType value)
{
char format[16];
char buffer[512];