// std::less_equal, which is guaranteed to offer a total order
// over pointers. See discussion at http://goo.gl/Cy2ya for more
// info.
- static const std::less_equal<const value_type*> le;
+ std::less_equal<const value_type*> le;
if (UNLIKELY(le(oldData, s) && !le(oldData + oldSize, s))) {
assert(le(s + n, oldData + oldSize));
const size_type offset = s - oldData;
void split(const Delim& delimiter,
const String& input,
fbvector<OutputType>& out,
- bool ignoreEmpty = false) {
+ bool ignoreEmpty) {
detail::internalSplit<OutputType>(
detail::prepareDelim(delimiter),
StringPiece(input),
template<class InputString, class OutputString>
bool hexlify(const InputString& input, OutputString& output,
- bool append_output=false) {
+ bool append_output) {
if (!append_output) output.clear();
static char hexValues[] = "0123456789abcdef";