mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
attempt to make MSVC happy
This commit is contained in:
parent
3849303a9b
commit
2d7aeeb2d8
@ -68,7 +68,7 @@ template <typename V> constexpr size_t vector_dims = vector_stats<V>::dims;
|
||||
|
||||
template <typename R, typename T, size_t N> class VecBase {
|
||||
public:
|
||||
constexpr VecBase(T scalar = T(0)) { std::fill(_begin(), _end(), scalar); }
|
||||
constexpr VecBase(T scalar = T(0)) { _c.fill(scalar); }
|
||||
|
||||
protected:
|
||||
const R &_at(size_t index) const { return _c.at(index); }
|
||||
|
Loading…
Reference in New Issue
Block a user