On Wed, 14 Jun 2017, Adam C. Emerson wrote:
constexpr std::size_t string_length_(const char* s, std::size_t i, std::size_t n) { return i < n ? (*(s + i) == '\0' ? i : string_length_(s, i + 1, n)) : throw std::invalid_argument("Unterminated string constant.");
This will no longer be constexpr. -Jesse -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html