#include <stlsoft/util/constraints.hpp>
| T1 | The first type | |
| T2 | The second type | 
stlsoft::must_be_same_size<long, long>(); // Ok stlsoft::must_be_same_size<char, long>(); // Compile error! stlsoft::must_be_same_size<long, char>(); // Compile error!
 1.5.6
 1.5.6