13de000f07
Summary: In some environment such as android, the c++ library does not have std::to_string. This path adds rocksdb::ToString(), which wraps std::to_string when std::to_string is not available, and implements std::to_string in the other case. Test Plan: make dbg -j32 ./db_test make clean make dbg OPT=-DOS_ANDROID -j32 ./db_test Reviewers: ljin, sdong, igor Reviewed By: igor Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D29181
29 lines
784 B
C++
29 lines
784 B
C++
// 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
|