Fix warnings about struct/class mismatch

ms_allocator_state template was declared as class but its specializations were as structs. This caused Clang 3.2 warnings. The commit changes ms_allocator_state declaration to struct to fix that.
This commit is contained in:
Andrey Semashev
2014-03-08 18:31:31 +03:00
parent fbb851097f
commit d586469d60

View File

@ -20,7 +20,7 @@ namespace boost {
struct ms_noinit_tag { };
template<class T>
class ms_allocator_state;
struct ms_allocator_state;
template<class T>
struct ms_allocator_state<T[]> {