Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Fix #95.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Jan 3, 2021
1 parent 46756b4 commit f6d8c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tao/json/span.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace tao

namespace tao
{
inline constexpr std::size_t dynamic_extent = std::numeric_limits< std::size_t >::max();
inline constexpr std::size_t dynamic_extent = ( std::numeric_limits< std::size_t >::max )();

template< typename ElementType, std::size_t Extent = dynamic_extent >
class span;
Expand Down

0 comments on commit f6d8c7a

Please sign in to comment.