Merge pull request #3 from correaa/patch-1

Update tag_of.hpp

Declare std::array with struct keyword, as per C++11, not class.
This commit is contained in:
Mateusz Łoskot
2014-02-08 10:28:43 +00:00

View File

@ -15,7 +15,7 @@
namespace std namespace std
{ {
template<typename T, std::size_t N> template<typename T, std::size_t N>
class array; struct array;
} }
namespace boost { namespace fusion namespace boost { namespace fusion