Revision 5e8e453d598c56683a31ceac20c09a6e4cb782e7 authored by fyrz on 10 February 2015, 19:57:08 UTC, committed by fyrz on 10 February 2015, 20:12:27 UTC
1 parent 677d024
Raw File
string_util.h
//  Copyright (c) 2013, Facebook, Inc.  All rights reserved.
//  This source code is licensed under the BSD-style license found in the
//  LICENSE file in the root directory of this source tree. An additional grant
//  of patent rights can be found in the PATENTS file in the same directory.
//
#include <sstream>
#include <string>
#include <vector>

#pragma once
namespace rocksdb {

extern std::vector<std::string> StringSplit(const std::string& arg, char delim);

template <typename T>
inline std::string ToString(T value) {
#ifndef OS_ANDROID
  return std::to_string(value);
#else
  // Andorid doesn't support all of C++11, std::to_string() being
  // one of the not supported features.
  std::ostringstream os;
  os << value;
  return os.str();
#endif
}

}  // namespace rocksdb
back to top