12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- namespace rttr
- {
- namespace detail
- {
- /////////////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////////////////
- // compare whether two arrays are the same or not
- // the comparison will go down till element wise comparison
- template<typename ElementType, std::size_t Count>
- RTTR_INLINE bool compare_array_equal(const ElementType(&lhs)[Count], const ElementType(&rhs)[Count]);
- /////////////////////////////////////////////////////////////////////////////////////////
- } // end namespace detail
- } // end namespace rttr
|